What is --v-layout-top
and why is it randomly fucking up my layout?
#20206
Replies: 1 comment 3 replies
-
It reserves space for fixed position elements like toolbars and banners, do you have 256px worth of toolbar? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Issue: when navigating between views, part of the layout moves up and down. This is visible because it's an animated transition. Everything would look fine if it would just snap into place, but it is animated, which makes it - horrible UX I'd say?
So the culprit seems to be
--v-layout-top
which is applied to<main>
and which changes from--v-layout-top: 256px;
to--v-layout-top: 192px;
when navigating from one view to the other.I do not set this variable, it seems to be part of the
v-app
magic of Vuetify or something else behind the scenes.What is this? How can I fix my issue?
Any help appreciated!
Beta Was this translation helpful? Give feedback.
All reactions