Hide the scroll bar (#468)

This commit is contained in:
Jeffrey Wang
2025-08-10 15:20:57 -04:00
committed by GitHub
parent 161c037b6e
commit 176ecbf85b

View File

@@ -44,12 +44,23 @@
}
.filter .options-list {
max-height: 200px;
/* not 200 cause the search thingie is 35.5 px high */
max-height: 164.5px;
overflow-y: auto;
padding: 0;
margin: 0;
/* Hide the scroll bar for stupid browers that dont follow regular standereds (looking at u microsoft IE) */
-ms-overflow-style: none;
scrollbar-width: none;
}
/* Hide the scroll bar cause it looks terrible (sorry to eho ever made it) */
.filter .options-list::-webkit-scrollbar {
display: none;
}
.filter .option {
display: flex;
align-items: center;
@@ -442,7 +453,7 @@
border-radius: 4px;
margin-top: 4px;
max-height: 200px;
overflow-y: auto;
overflow-y: hidden ;
z-index: 1000;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}