logseq-calendar/lib/ScrollContainer.module.scss

25 lines
559 B
SCSS
Raw Normal View History

2023-08-24 17:37:23 +00:00
.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;
}
}