diff --git a/CLIENT/CLIENT.FileSharing/src/app/app.component.html b/CLIENT/CLIENT.FileSharing/src/app/app.component.html index 8bca45a..c665d93 100644 --- a/CLIENT/CLIENT.FileSharing/src/app/app.component.html +++ b/CLIENT/CLIENT.FileSharing/src/app/app.component.html @@ -177,13 +177,9 @@ } -
-
-
-

Hello, {{ title }}

-

Congratulations! Your app is running. 🎉

-
-
+
+ +
diff --git a/CLIENT/CLIENT.FileSharing/src/app/app.component.scss b/CLIENT/CLIENT.FileSharing/src/app/app.component.scss index e69de29..34b2e75 100644 --- a/CLIENT/CLIENT.FileSharing/src/app/app.component.scss +++ b/CLIENT/CLIENT.FileSharing/src/app/app.component.scss @@ -0,0 +1,15 @@ +#main { + fs-navbar { + display: none; + } +} + +/* -- MEDIA -- */ + +@media (min-width: 48em) { + #main { + fs-navbar { + display: block; + } + } +} diff --git a/CLIENT/CLIENT.FileSharing/src/app/app.component.ts b/CLIENT/CLIENT.FileSharing/src/app/app.component.ts index c3c8653..1e941fe 100644 --- a/CLIENT/CLIENT.FileSharing/src/app/app.component.ts +++ b/CLIENT/CLIENT.FileSharing/src/app/app.component.ts @@ -1,12 +1,14 @@ import { Component } from '@angular/core'; import { RouterOutlet } from '@angular/router'; +import { NavbarComponent } from './navigation/navbar/navbar.component'; +import { ToolbarComponent } from './navigation/toolbar/toolbar.component'; @Component({ selector: 'app-root', standalone: true, - imports: [RouterOutlet], + imports: [RouterOutlet, NavbarComponent, ToolbarComponent], templateUrl: './app.component.html', - styleUrl: './app.component.scss' + styleUrl: './app.component.scss', }) export class AppComponent { title = 'CLIENT.FileSharing';