Calendar component
This commit is contained in:
41
app/components/Calendar.module.css
Normal file
41
app/components/Calendar.module.css
Normal file
@@ -0,0 +1,41 @@
|
||||
.calendarGrid {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
grid-template-columns: auto auto auto auto auto auto auto;
|
||||
text-align: center;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.monthNavigation {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.monthTitle {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.monthNavBtn {
|
||||
background-color: #d4f0dd;
|
||||
}
|
||||
|
||||
.emptyBtn {
|
||||
background-color: #d4f0dd;
|
||||
}
|
||||
|
||||
.calendarCell {
|
||||
background-color: #d4f0dd;
|
||||
border: 1px solid #ccc;
|
||||
padding: 0.5rem;
|
||||
cursor: pointer;
|
||||
height: 3rem;
|
||||
width: 3rem;
|
||||
border-radius: 0.5rem;
|
||||
}
|
||||
|
||||
.firstWeekPaddingCell {
|
||||
height: 3rem;
|
||||
width: 3rem;
|
||||
}
|
||||
Reference in New Issue
Block a user