Replies: 1 comment
-
https://vuetifyjs.com/en/api/v-navigation-drawer/#props-floating |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Problem to solve
When your using a
<v-navigation-draw>
(white background) with E.g. a<v-sheet>
(with black background) you'll always see a frustrating white space. You can watch a demo in this vuetify playgroundProposed solution
There is no explicit CSS which specify border, outline or anything esle which can make this white space.
But you can fix this by specifing a
border-width: 0px
by default by two ways:VNavigationDrawer: {style: {borderWidth: '0px'}}
.v-navigation-drawer { border-width: 0px !important; }
I'm pretty sure, Vuetify team can fix this by puttin this by default (of course, if a custom css add a border or a border-0 utility class it will be overrided.
Beta Was this translation helpful? Give feedback.
All reactions