Files
web/components/TempDesignSystem/Form/Date/date.module.css
2024-06-19 14:51:00 +02:00

21 lines
294 B
CSS

/* Leaving, will most likely get deleted */
.container {
display: grid;
gap: var(--Spacing-x2);
grid-template-areas: "year month day";
grid-template-columns: 1fr 1fr 1fr;
width: var(--width);
}
.day {
grid-area: day;
}
.month {
grid-area: month;
}
.year {
grid-area: year;
}