1
1
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:
avele 2019-09-10 01:09:20 +04:00 committed by GitHub
parent a6e62882cb
commit 7e5612dc35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -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>

View File

@ -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>