bootstrap installiert und hinzugefügt

This commit is contained in:
Developer 02
2024-06-13 10:56:12 +02:00
parent 8c767a73b4
commit eac7454989
5 changed files with 15 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
<nav class="h5 navbar navbar-expand-lg bg-body-tertiary">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">

View File

@@ -1,12 +1,12 @@
import { Component } from '@angular/core';
import { NgbNavModule } from '@ng-bootstrap/ng-bootstrap';
@Component({
selector: 'app-navbar',
standalone: true,
imports: [NgbNavModule],
imports: [],
templateUrl: './navbar.component.html',
styleUrl: './navbar.component.scss'
})
export class NavbarComponent {
active = 1;
}