We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This happens when you delete the user area in the nav region. Notice the top of the first item does not align with the bottom of the appbar.
I fixed it by editing layouts/vertical-white/Sidebar.vue Match the appbar height: <v-list nav> to <v-list nav height="75">
layouts/vertical-white/Sidebar.vue
<v-list nav>
<v-list nav height="75">
Remove some vertical padding: <v-list-item class="px-0"> to <v-list-item class="pl-2">
<v-list-item class="px-0">
<v-list-item class="pl-2">
Hopefully that'll fix it, I've modified a few other things you see.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This happens when you delete the user area in the nav region. Notice the top of the first item does not align with the bottom of the appbar.
I fixed it by editing
layouts/vertical-white/Sidebar.vue
Match the appbar height:
<v-list nav>
to<v-list nav height="75">
Remove some vertical padding:
<v-list-item class="px-0">
to<v-list-item class="pl-2">
Hopefully that'll fix it, I've modified a few other things you see.
The text was updated successfully, but these errors were encountered: