Skip to content
New issue

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

Layout tweaks #1007

Merged
merged 3 commits into from
Jan 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -73,7 +73,7 @@ const items = computed(() => {
hasChildren: route.children && route.children.length > 0,
}
})
.filter((route) => route.label)
.filter((route) => route.label && !route.hasChildren)
})

const { getColor } = useColors()
2 changes: 1 addition & 1 deletion src/components/navbar/components/AppNavbarActions.vue
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
>
{{ t('helpAndSupport') }}
</VaButton>
<ProfileDropdown class="app-navbar-actions__item app-navbar-actions__item--profile mr-0" />
<ProfileDropdown class="app-navbar-actions__item app-navbar-actions__item--profile" />
</div>
</template>

Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
</span>
</VaButton>
</template>
<VaDropdownContent class="profile-dropdown__content md:w-60 px-0 py-4 w-full">
<VaDropdownContent class="profile-dropdown__content md:w-60 px-0 py-4 w-full space-y-2">
<VaList v-for="group in options" :key="group.name" class="space-y-2">
<header
v-if="group.name"