blob: dae8945fa862711d2996a6b70e5e0eba360cfe0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.countdownSection {
@apply w-fit p-2.5 pr-6
rounded-r-full
font-medium
flex items-center gap-x-2.5;
}
.countdown {
@apply flex gap-x-1;
}
.countdown span {
@apply py-0.5 w-8 bg-red-600 text-gray_r-4 rounded-md text-center;
}
|