Browse Source
Merge pull request #1837 from doccano/enhancement/fixedMenu
Fix the position of the toolbar
pull/1844/head
Hiroki Nakayama
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
frontend/components/tasks/toolbar/ToolbarLaptop.vue
|
@ -177,6 +177,12 @@ export default Vue.extend({ |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style scoped> |
|
|
<style scoped> |
|
|
|
|
|
.toolbar-control { |
|
|
|
|
|
position: sticky; |
|
|
|
|
|
top: 68px; |
|
|
|
|
|
z-index: 100; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
.toolbar-control >>> .v-toolbar__content { |
|
|
.toolbar-control >>> .v-toolbar__content { |
|
|
padding: 0px !important; |
|
|
padding: 0px !important; |
|
|
} |
|
|
} |
|
|