32 lines
440 B
CSS
32 lines
440 B
CSS
.container {
|
|
@apply max-w-6xl mx-auto px-4 sm:px-6 lg:px-8;
|
|
}
|
|
|
|
.flexCenter {
|
|
@apply flex items-center;
|
|
}
|
|
|
|
.flexBetween {
|
|
@apply flex justify-between items-center;
|
|
}
|
|
|
|
.transitionBase {
|
|
@apply transition-all duration-300;
|
|
}
|
|
|
|
.textBase {
|
|
@apply font-poppins font-bold text-[14px];
|
|
}
|
|
|
|
.textPrimary {
|
|
@apply text-[#1E0E62];
|
|
}
|
|
|
|
.textGray {
|
|
@apply text-gray-600;
|
|
}
|
|
|
|
.hoverPrimary {
|
|
@apply hover:text-[#1E0E62] transition-colors;
|
|
}
|