Skip to content

Commit

Permalink
ci: style changes and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
flockean committed Oct 1, 2024
1 parent a71fa8a commit b4ef0f6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 17 deletions.
13 changes: 6 additions & 7 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<div class="pt-8 bg-sky-300 shadow-lg">
<div class="pt-8 bg-sky-300 shadow-lg opacity-80">
<div class="flex items-center justify-center font-bold text-4xl pb-7"> {{title}} </div>
<div class="p-4 bg-sky-200 w-full">
<div class="inline-flex gap-4">
<div class="inline-flex gap-4">
<div *ngIf=configService.isLoggedIn() class="font-bold"> {{configService.getStoredUserData().username}} </div>
<div *ngIf=configService.isLoggedIn() class="font-bold text-red-500"> {{configService.getStoredUserData().permission}} </div>
</div>
</div>
</div>
</div>
<div class="basebob bg-sky-100">
<div class="station pt-8">
<router-outlet/>
<div>

<app-navibar/>
<app-navibar/>
</div>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="grid m-2 rounded-lg shadow-lg">
<div class="grid m-2 rounded-lg shadow-lg opacity-95">
<div class="p-2 rounded-t-lg inline-block bg-sky-300 text-center w-full"> {{title}} </div>
<div class="grid p-2 rounded-b-lg bg-sky-200">
<ng-content/>
Expand Down
7 changes: 4 additions & 3 deletions src/app/management-view/management-view.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<div class="basebob">
Management of Projects and Services, here you can create, modify and delete Projects in the Database
</div>
<app-container-block title="Project Managemnet Creation">
<div> Information xxx, Connection-Status, Api Avaliable </div>
</app-container-block>

<div class="flex" >
<app-container-block title="Placeholder Container" class="w-1/2 h-full items-stretch">
Description
Expand Down
Binary file added src/assets/myStation.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 8 additions & 6 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@
}
}


.station{
background-image: url("assets/myStation.jpg");
z-index: 0;
width: 100%;
height: 100%;
position: absolute;
}

/* CSS */
button {
Expand All @@ -40,10 +46,6 @@ button:active {
transform: scale(0.9);
}

.basebob{
div{
font-family: Bahnschrift, sans-serif;
border: 0.25rem solid rgb(224, 242, 254);
border-radius: 1rem;
margin: 1rem;
padding: 1rem;
}

0 comments on commit b4ef0f6

Please sign in to comment.