17 lines
311 B
CSS
17 lines
311 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;
|
|
} |