26 lines
511 B
CSS
26 lines
511 B
CSS
.calendar {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
gap: 1rem;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.calendar::-webkit-scrollbar { display: none; }
|
|
|
|
.calendar {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.week-info {
|
|
background: var(--mud-palette-action-disabled-background);
|
|
width: 100%;
|
|
padding: .3rem .5rem;
|
|
border-radius: 8px;
|
|
text-transform: capitalize;
|
|
font-weight: 700;
|
|
} |