Skip to content

Commit

Permalink
Merge pull request #2061 from DSD-DBS/move-app-to-tailwind
Browse files Browse the repository at this point in the history
refactor: Migrate App Component to TailwindCSS
  • Loading branch information
MoritzWeber0 authored Dec 3, 2024
2 parents 5f230dd + 756b0af commit 89b49c6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 23 deletions.
20 changes: 0 additions & 20 deletions frontend/src/app/app.component.css

This file was deleted.

4 changes: 2 additions & 2 deletions frontend/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
~ SPDX-License-Identifier: Apache-2.0
-->

<mat-drawer-container class="container-wrapper" [hasBackdrop]="true">
<mat-drawer-container [hasBackdrop]="true">
<mat-drawer #sidenav mode="push">
<app-nav-bar-menu></app-nav-bar-menu>
</mat-drawer>

<mat-drawer-content class="overall-wrapper">
<mat-drawer-content class="flex min-h-full flex-col">
@if (
(fullscreenService.isFullscreen$ | async) === false &&
pageLayoutService.showNavbar
Expand Down
1 change: 0 additions & 1 deletion frontend/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import { FullscreenService } from './sessions/service/fullscreen.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
imports: [
MatDrawerContainer,
MatDrawer,
Expand Down

0 comments on commit 89b49c6

Please sign in to comment.