mirror of https://github.com/Kylart/KawAnime.git
Fix speed dial on info layout
This commit is contained in:
parent
608171e1fe
commit
eae2dfad85
|
@ -146,7 +146,7 @@
|
||||||
//- Action button
|
//- Action button
|
||||||
v-speed-dial(
|
v-speed-dial(
|
||||||
v-model='actions.show',
|
v-model='actions.show',
|
||||||
top, left, fixed,
|
top, left, absolute,
|
||||||
open-on-hover,
|
open-on-hover,
|
||||||
direction='right',
|
direction='right',
|
||||||
transition='slide-x-transition'
|
transition='slide-x-transition'
|
||||||
|
@ -154,11 +154,10 @@
|
||||||
template(v-slot:activator)
|
template(v-slot:activator)
|
||||||
v-btn#info-actions(
|
v-btn#info-actions(
|
||||||
color='primary',
|
color='primary',
|
||||||
v-model='actions.show',
|
|
||||||
fab
|
fab
|
||||||
)
|
)
|
||||||
v-icon account_circle
|
v-icon(v-if='!actions.show') account_circle
|
||||||
v-icon close
|
v-icon(v-else) close
|
||||||
|
|
||||||
template(v-for='_provider in providers')
|
template(v-for='_provider in providers')
|
||||||
v-tooltip(top)
|
v-tooltip(top)
|
||||||
|
@ -332,8 +331,9 @@ export default {
|
||||||
|
|
||||||
<style lang="stylus" scoped>
|
<style lang="stylus" scoped>
|
||||||
.icon
|
.icon
|
||||||
height 20px
|
height 24px
|
||||||
width 20px
|
width 24px
|
||||||
|
background-size 24px 24px
|
||||||
|
|
||||||
.info-container
|
.info-container
|
||||||
position relative
|
position relative
|
||||||
|
|
Loading…
Reference in New Issue