start calendar-strip__date

This commit is contained in:
isUnknown 2024-07-24 18:19:25 +02:00
parent bedbf7712a
commit bb3d4a4be0
2 changed files with 18 additions and 3 deletions

View file

@ -1,4 +1,5 @@
.calendar-strip {
position: relative;
background-color: var(--color-yellow);
box-sizing: border-box;
width: 100%;
@ -22,11 +23,21 @@
width: 100%;
}
.calendar-strip__day.event {
text-decoration: underline;
.calendar-strip__day {
transition: opacity 0.2s ease-in-out;
}
.calendar-strip__calendar-btn {
border: var(--border);
padding: 0.2rem 0.5rem;
}
.calendar-strip__date {
position: absolute;
left: 0;
top: 100%;
width: 100%;
height: 10rem;
background-color: var(--color-yellow);
z-index: -1;
}