Skip to content

Commit

Permalink
Add a couple more semantic tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelMoeri committed Oct 18, 2024
1 parent f7d2a80 commit e242be3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "2.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve ",
"start": "ng serve --host 0.0.0.0",
"build": "ng build",
"build:staging": "ng build --configuration staging",
"watch": "ng build --watch --configuration development",
Expand Down
8 changes: 6 additions & 2 deletions frontend/src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
<app-application-top-bar></app-application-top-bar>
<router-outlet></router-outlet>
<header>
<app-application-top-bar></app-application-top-bar>
</header>
<main>
<router-outlet></router-outlet>
</main>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<header id="topBarHeight">
<div id="topBarHeight">
<div id="okrTopbar">
<span class="d-flex h-100 align-items-center ps-4">
<img alt="okr-logo" height="32" ngSrc="{{ this.logoSrc$ | async }}" width="140" />
Expand Down Expand Up @@ -49,4 +49,4 @@
</button>
</mat-menu>
</div>
</header>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="input-style gap-2 col-12">
<label class="text-black">Bewertung</label>
<div class="d-flex gap-3">
<div
<span
class="successful w-50 valuation-card card-hover-successful"
[ngClass]="{
'active-successful': completeForm.value.isSuccessful == true,
Expand All @@ -25,8 +25,8 @@
tabindex="0"
>
Objective erreicht
</div>
<div
</span>
<span
class="not-successful w-50 valuation-card card-hover-not-successful"
[ngClass]="{
'active-not-successful': completeForm.value.isSuccessful === false,
Expand All @@ -38,7 +38,7 @@
tabindex="0"
>
Objective nicht erreicht
</div>
</span>
</div>
</div>

Expand Down

0 comments on commit e242be3

Please sign in to comment.