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

53 lines
891 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;
2023-08-24 02:47:25 +00:00
display: flex;
justify-content: space-between;
}
.controlButtons {
display: flex;
gap: 12px;
2023-08-23 20:21:01 +00:00
}
}
.daysOfWeek {
display: grid;
grid-template-columns: repeat(7, 1fr);
div {
flex-grow: 1;
text-align: right;
font-weight: 100;
border-bottom: 1px solid gray;
2023-08-24 02:11:12 +00:00
padding: 4px;
2023-08-23 20:21:01 +00:00
}
}
.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
}