Cleanup calendar styles

This commit is contained in:
Guntis Smaukstelis
2025-03-14 12:04:55 +02:00
parent a2d1608cb0
commit 854037a42b
2 changed files with 20 additions and 20 deletions
-55
View File
@@ -1,55 +0,0 @@
.calendar {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 5px;
}
.calendar-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.calendar-nav {
display: flex;
align-items: center;
}
.calendar-nav button {
margin-right: 5px;
background-color: #fff;
border: none;
padding: 5px;
cursor: pointer;
}
.calendar-year-month {
text-align: center;
}
.calendar-cell {
display: flex;
justify-content: center;
align-items: center;
height: 40px;
background-color: #fff;
}
.prev-month,
.next-month {
opacity: 0.3;
}
.data-date {
background-color: #99ccff;
}
.current-date {
background-color: #ffcc66;
}
.calendar-cell:hover {
background-color: #f2f2f2;
cursor: pointer;
}