chore: fix date selector style

This commit is contained in:
boojack 2022-06-21 08:43:45 +08:00
parent 40680a5e0f
commit cc54be0d1d

View file

@ -39,22 +39,22 @@
> .date-container {
@apply flex flex-col justify-center items-center m-auto w-24 h-24;
border-radius: 32px;
border-radius: 24px;
box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
> .month-text,
> .day-text {
@apply flex flex-col justify-center items-center w-full h-6 text-sm;
@apply flex flex-col justify-center items-center text-center w-full h-6 text-sm;
}
> .month-text {
@apply bg-blue-700 text-white;
border-top-left-radius: 32px;
border-top-right-radius: 32px;
border-top-left-radius: 24px;
border-top-right-radius: 24px;
}
> .date-text {
@apply flex flex-col justify-center items-center w-full pt-1 h-12;
@apply flex flex-col justify-center items-center text-center w-full pt-1 h-12;
font-size: 40px;
font-weight: bold;
}