1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.scroll {
max-width: 100%;
overflow-x: scroll;
scrollbar-color: rgba(0,0,0,0.3) transparent;
}
.scroll::-webkit-scrollbar {
height: 20px;
}
.scroll::-webkit-scrollbar-button {
display: none;
}
.scroll::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
.scroll::-webkit-scrollbar-track {
background: transparent;
border-radius: 10px;
}
@media (max-width: 768px) {
.scroll {
scrollbar-width: none;
}
.scroll::-webkit-scrollbar {
display: none;
}
}