Skip to content

Commit

Permalink
Show navbar while loading config, reduce margin
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed May 21, 2024
1 parent 88a981b commit 0c04005
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions client/src/components/Masthead/Masthead.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,7 @@ onMounted(() => {
</script>

<template>
<BNavbar
v-if="isConfigLoaded"
id="masthead"
type="dark"
role="navigation"
aria-label="Main"
class="justify-content-between">
<BNavbar id="masthead" type="dark" role="navigation" aria-label="Main" class="justify-content-between">
<BNavbarNav>
<BNavbarBrand
v-b-tooltip.hover
Expand All @@ -105,7 +99,7 @@ onMounted(() => {
{{ brand }}
</span>
</BNavbarNav>
<BNavbarNav>
<BNavbarNav v-if="isConfigLoaded">
<MastheadItem id="analysis" title="Tools and Current History" icon="fa-home" @click="openUrl('/')" />
<MastheadItem
v-if="windowTab"
Expand Down Expand Up @@ -183,7 +177,6 @@ onMounted(() => {
cursor: pointer;
text-decoration: none;
color: var(--masthead-text-color);
margin-right: 0.25rem;
&:hover {
color: var(--masthead-text-hover);
}
Expand Down

0 comments on commit 0c04005

Please sign in to comment.