mirror of
https://github.com/aelve/guide.git
synced 2024-11-22 03:12:58 +03:00
Front/fix/jumps after reloading (#395)
* Fix of jumps after reloading * Hidden some useless and obstructive div that vuetify add along with "v-menu" component
This commit is contained in:
parent
a6e62882cb
commit
7e5612dc35
@ -246,14 +246,17 @@ blockquote {
|
||||
}
|
||||
/* Some useless and obstructive div that vuetify add along with "v-menu" component */
|
||||
.v-menu--inline {
|
||||
display: none;
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<style scoped>
|
||||
<style lang="postcss" scoped>
|
||||
/* Should be same padding on any screen cause it changes with toolbar and we fixed toolbar's height (see Toolbar.vue) height on each screen */
|
||||
.app-content {
|
||||
padding: 100px 0px 36px !important;
|
||||
line-height: 150%;
|
||||
}
|
||||
.app-content >>> > .v-content__wrap > .container {
|
||||
padding: 12px;
|
||||
}
|
||||
</style>
|
||||
|
@ -229,6 +229,10 @@ export default class CategoryHeader extends Vue {
|
||||
.category-actions {
|
||||
display: none;
|
||||
}
|
||||
.category-header__second-row {
|
||||
/* Cause menu btn appears after page loading and causes second row to jump */
|
||||
min-height: 36px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user