]> git.ipfire.org Git - pbs.git/commitdiff
frontend: Correctly import the container module for the base layout
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 7 Jul 2025 14:50:33 +0000 (14:50 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 7 Jul 2025 14:50:33 +0000 (14:50 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
frontend/src/App.vue

index 30923fcc00923fc1d746978f891831f47726dc57..05a3d15d4f33189b73b6f1d2e8cd753df7bb2cc2 100644 (file)
@@ -2,6 +2,7 @@
        import { RouterLink, RouterView } from "vue-router"
 
        // Components
+       import Container from "@/components/Container.vue";
        import Icon from "@/components/Icon.vue";
 
        // Authentication
@@ -18,7 +19,7 @@
 
 <template>
        <nav class="navbar is-dark" role="navigation" aria-label="main navigation">
-               <div class="container">
+               <Container>
                        <div class="navbar-brand">
                                <RouterLink to="/" class="navbar-item">
                                        <strong>
@@ -64,7 +65,7 @@
                                        </div>
                                </div>
                        </div>
-               </div>
+               </Container>
        </nav>
 
        <div class="is-flex-grow-1 is-flex-shrink-0">