Blame Raw
· · · 21 lines (585 B)
0 contributors
1.scrollable-buttons-container {
2 /* Use viewport height instead of fixed pixels */
3 max-height: 50vh;
4 /* Momentum scrolling on iOS */
5 -webkit-overflow-scrolling: touch;
6 /* m-t-1 is equivalent to margin-top: 1rem; */
7 margin-top: 1rem;
8 flex-shrink: 1;
9 min-height: 0;
10 scrollbar-width: thin;
11 scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
12}
13
14.scrollable-buttons-container::-webkit-scrollbar {
15 width: 6px;
16}
17
18.scrollable-buttons-container::-webkit-scrollbar-thumb {
19 background-color: rgba(255, 255, 255, 0.3);
20 border-radius: 3px;
21}