24 lines
559 B
SCSS
24 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;
|
|
}
|
|
}
|