Hide bookmark actions for mobile

This commit is contained in:
Christian Cueni 2019-11-05 11:04:29 +01:00
parent f93e7f014d
commit a623a13c1d
1 changed files with 7 additions and 2 deletions

View File

@ -30,6 +30,7 @@
<style scoped lang="scss"> <style scoped lang="scss">
@import "@/styles/_variables.scss"; @import "@/styles/_variables.scss";
@import "@/styles/_mixins.scss";
.bookmark-actions { .bookmark-actions {
height: 100%; height: 100%;
@ -39,7 +40,12 @@
position: absolute; position: absolute;
right: -5*$large-spacing; right: -5*$large-spacing;
display: none;
@include desktop {
display: flex; display: flex;
}
flex-direction: column; flex-direction: column;
align-content: center; align-content: center;
@ -63,7 +69,6 @@
opacity: 1; opacity: 1;
} }
} }
} }
</style> </style>