FIxed scrollbars on overlay

This commit is contained in:
Andrew 2021-08-20 15:18:55 -04:00
parent af3ab28ee8
commit 1bc8acb1c5

View File

@ -99,10 +99,18 @@
overflow: scroll;
}
.overlay::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.overlay {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* Position the content inside the overlay */
.overlay-content {
overflow: scroll;
display: flex;
flex-direction: column;
background-color: #fff;