reset: scroll-bar: set only on devices > 768px

default style to others
This commit is contained in:
Aditya Telange 2020-12-29 18:10:18 +05:30
parent 0e9ca244dc
commit 2b7d2dd493
No known key found for this signature in database
GPG key ID: 82E844EF3DA99E77

View file

@ -113,11 +113,6 @@ img {
max-width: 100%
}
::-webkit-scrollbar {
width: 10px;
height: 6px
}
::-webkit-scrollbar-track {
background: var(--theme)
}
@ -135,9 +130,9 @@ img {
background: var(--secondary)
}
@media screen and (max-width:800px) {
@media screen and (min-width:768px) {
::-webkit-scrollbar {
width: 8px;
height: 2px
width: 10px;
height: 6px
}
}