logseq-calendar/src/calendar/Calendar.module.scss

45 lines
759 B
SCSS
Raw Normal View History

2023-08-23 20:21:01 +00:00
.calendar {
flex-grow: 1;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
overflow: auto;
}
.header {
position: sticky;
.title {
font-size: 22px;
}
}
.daysOfWeek {
display: grid;
grid-template-columns: repeat(7, 1fr);
div {
flex-grow: 1;
text-align: right;
font-weight: 100;
border-bottom: 1px solid gray;
}
}
.scrollyPart {
flex-grow: 1;
2023-08-24 00:04:22 +00:00
overflow-y: scroll; /* Add the ability to scroll the y axis */
/* Hide the scrollbar for Internet Explorer, Edge and Firefox */
-ms-overflow-style: none; /* Internet Explorer and Edge */
scrollbar-width: none; /* Firefox */
/* Hide the scrollbar for Chrome, Safari and Opera */
&::-webkit-scrollbar {
display: none;
}
2023-08-23 20:21:01 +00:00
}