summaryrefslogtreecommitdiff
path: root/Geshem.vue
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2017-10-18 22:11:16 +0300
committerYuval Adam <_@yuv.al>2017-10-18 22:11:16 +0300
commit1e1bcf15cd7211210c32dba73da03db64eba495f (patch)
tree797eb0b7129a9d63357bb6981d61996c8d481786 /Geshem.vue
parenteda39b5fe5ccc8c9d6d6291c98fc195130c34343 (diff)
Slider styles
Diffstat (limited to 'Geshem.vue')
-rw-r--r--Geshem.vue8
1 files changed, 6 insertions, 2 deletions
diff --git a/Geshem.vue b/Geshem.vue
index 24aa154..afba8ce 100644
--- a/Geshem.vue
+++ b/Geshem.vue
@@ -5,7 +5,7 @@
<div id="time">{{ time }}</div>
</div>
<div id="slider">
- <vue-slider ref="slider" v-model="slider" :min=1 :max=7></vue-slider>
+ <vue-slider ref="slider" v-model="slider" :min=1 :max=7 :height=20 :dot-size=45 :tooltip=false></vue-slider>
</div>
</div>
</template>
@@ -134,9 +134,13 @@
}
#slider {
position: absolute;
- bottom: 10vh;
+ bottom: 8vh;
width: 30vw;
margin-left: 35vw;
+ @media only screen and (max-device-width: 812px) {
+ width: 80vw;
+ margin-left: 8vw;
+ }
}
}
</style>