Merge pull request #1302 from pixelfed/trwnh-fix-nontouch

Hide webkit scrollbar only on touch-only devices (fix #1285)
pull/1405/head
daniel 6 years ago committed by GitHub
commit 2a61ee5015
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -249,9 +249,11 @@
color: #fff;
font-weight: bold;
}
.media-drawer-filters::-webkit-scrollbar {
display: none;
}
@media (hover: none) and (pointer: coarse) {
.media-drawer-filters::-webkit-scrollbar {
display: none;
}
}
</style>
<script type="text/javascript">
export default {

Loading…
Cancel
Save