Skip to content

Commit

Permalink
make no team selected text also white
Browse files Browse the repository at this point in the history
  • Loading branch information
nevio18324 authored and RandomTannenbaum committed Dec 11, 2024
1 parent c743bf3 commit 9211cfd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
>
</app-team>
<div *ngIf="(overviewEntities$ | async)?.length == 0" class="d-flex align-items-center flex-column pt-5 gap-5">
<p>Kein Team ausgewählt</p>
<p id="no-team-text">Kein Team ausgewählt</p>
<img src="{{ this.backgroundLogoSrc$ | async }}" alt="Greyed out company logo" width="242" class="puzzle-logo" />
</div>
</div>
Expand Down
5 changes: 3 additions & 2 deletions frontend/src/app/components/overview/overview.component.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@import "../style/variables";

.overview-container {
overflow-x: hidden;
background: var(--okr-overview-background-color);
Expand All @@ -13,3 +11,6 @@
.puzzle-logo {
filter: invert(38%) sepia(31%) saturate(216%) hue-rotate(167deg) brightness(96%) contrast(85%);
}
#no-team-text {
color: var(--okr-team-header-color);
}

0 comments on commit 9211cfd

Please sign in to comment.