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; color: #fff;
font-weight: bold; font-weight: bold;
} }
.media-drawer-filters::-webkit-scrollbar { @media (hover: none) and (pointer: coarse) {
display: none; .media-drawer-filters::-webkit-scrollbar {
} display: none;
}
}
</style> </style>
<script type="text/javascript"> <script type="text/javascript">
export default { export default {

Loading…
Cancel
Save