utitlites replaced

This commit is contained in:
Batyr 2025-02-06 18:01:47 +05:00
parent 80475de39b
commit ec0d0c347b
1 changed files with 35 additions and 31 deletions

View File

@ -30,46 +30,50 @@
font-family: "Gilroy-Medium";
@apply bg-background;
}
}
@layer utilities {
.normal {
@apply font-["Gilroy-Regular"] font-normal;
}
@layer utilities {
.normal {
@apply font-["Gilroy-Regular"] font-normal;
}
.semibold {
@apply font-["Gilroy-Semibold"] font-semibold;
}
.semibold {
@apply font-["Gilroy-Semibold"] font-semibold;
}
.h1 {
@apply text-[28px] leading-[130%] font-medium;
}
.h1 {
@apply text-[28px] leading-[130%] font-medium;
}
.h2 {
@apply md:text-3xl text-2xl text-[#171717];
}
.h2 {
@apply md:text-3xl text-2xl text-[#171717];
}
.p {
@apply md:text-lg text-base text-on_surface_v;
}
.p {
@apply md:text-lg text-base text-on_surface_v;
}
.text-18 {
@apply text-lg normal text-on_surface_v;
}
.text-18 {
@apply text-lg normal text-on_surface_v;
}
.dot {
@apply w-5 h-1 cursor-pointer bg-on_surface_v rounded-[2px];
}
.dot {
@apply w-5 h-1 cursor-pointer bg-on_surface_v rounded-[2px];
}
.dot-active {
@apply w-5 h-1 bg-on_surface rounded-[2px];
}
.dot-active {
@apply w-5 h-1 bg-on_surface rounded-[2px];
}
.nav-btn {
@apply bg-[#D9D9D9] size-12 rounded-full flex items-center justify-center;
}
.nav-btn {
@apply bg-[#D9D9D9] size-12 rounded-full flex items-center justify-center;
}
.progress-circle {
@apply size-14 rounded-full text-2xl z-10 text-[#5F6674];
}
.progress-circle {
@apply size-14 rounded-full text-2xl z-10 text-[#5F6674];
}
.input {
@apply flex h-14 rounded-[2px] border p-4 focus:ring-[3px] focus:outline-none focus:ring-primary transition-all hover:ring-on_surface ring-outline ring-1 bg-transparent text-base normal file:border-0 file:bg-secondary_container file:outline-none file:text-sm file:w-fit file:text-on_secondary_container file:font-medium focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50;
}
}