logseq-calendar/lib/ScrollContainer.module.scss
2023-08-24 13:37:23 -04:00

25 lines
559 B
SCSS

.scrollyEl {
flex-grow: 1;
&.horizontal {
flex-direction: row;
overflow-x: scroll; /* Add the ability to scroll the y axis */
}
&.vertical {
flex-direction: column;
overflow-y: scroll; /* Add the ability to scroll the y axis */
}
// Hide the scroll bar
/* 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;
}
}