Skip to content

Commit

Permalink
Bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jason5ng32 committed May 26, 2024
1 parent 80377ca commit bffd204
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frontend/components/Nav.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<template>
<!-- Nav -->
<nav id="navbar-top" class="navbar navbar-expand-lg bg-body-tertiary px-3 mb-3 jn-navbar-top"
<header class="navbar navbar-expand-lg bg-body-tertiary px-3 mb-3 jn-navbar-top ">
<nav id="navbar-top" class="container-xxl"
:class="{ 'dark-mode-nav navbar-dark bg-dark': isDarkMode }">
<div class="jn-logo">

Expand Down Expand Up @@ -72,7 +73,7 @@
</a>
</div>
</nav>

</header>
</template>

<script setup>
Expand Down Expand Up @@ -305,4 +306,7 @@ defineExpose({
.preference-button {
margin-left: 8pt;
}
.container-xxl {
max-width: 1600px;
}
</style>
1 change: 1 addition & 0 deletions frontend/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { useMainStore } from './store';
import App from './App.vue'
import i18n from './locales/i18n';
import router from './router';
import 'bootstrap';
import { analytics } from './utils/use-analytics';

import { Tooltip } from 'bootstrap';
Expand Down

0 comments on commit bffd204

Please sign in to comment.