User Select disabled, plus hidding horizontal scroll bars

This commit is contained in:
Bel Curcio
2021-06-04 17:54:39 -03:00
parent f557274f62
commit 1699254288
3 changed files with 12 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
.root {
@apply relative w-full h-full;
overflow-y: hidden;
@apply relative w-full h-full select-none;
overflow: hidden;
}
.slider {
@@ -14,7 +14,7 @@
.control {
@apply bg-violet absolute bottom-10 right-10 flex flex-row
border-accent-0 border text-accent-0 z-30 shadow-xl;
border-accent-0 border text-accent-0 z-30 shadow-xl select-none;
height: 48px;
}
@@ -59,11 +59,16 @@
}
.album {
width: 100%;
height: 100%;
@apply bg-violet-dark;
box-sizing: content-box;
overflow-y: hidden;
overflow-x: auto;
white-space: nowrap;
height: 125px;
padding-bottom: 10px;
margin-bottom: -10px;
}
@screen md {