-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed colour scheme to light, instead Fixed header mixins
- Loading branch information
1 parent
f053129
commit 3aedd0c
Showing
5 changed files
with
26 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<header class="mb-2"> | ||
<app-site-header></app-site-header> | ||
</header> | ||
|
||
<div class="relative min-h-screen"> | ||
<main class="pb-80"> | ||
<header class="mb-2"> | ||
<app-site-header></app-site-header> | ||
</header> | ||
|
||
<main class="p-5 pb-96"> | ||
<router-outlet /> | ||
</main> | ||
|
||
<footer class="absolute bottom-0 my-2 w-full"> | ||
<footer class="absolute bottom-0 w-full"> | ||
<app-site-footer></app-site-footer> | ||
</footer> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/app/portal/features/site-footer/site-footer.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 14 additions & 9 deletions
23
src/app/portal/features/site-header/site-header.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
@use '@angular/material' as mat; | ||
|
||
mat-toolbar { | ||
background: var(--mat-sys-on-primary); | ||
@include mat.toolbar-overrides( | ||
( | ||
container-background-color: var(--mat-sys-primary), | ||
container-text-color: var(--mat-sys-on-primary), | ||
) | ||
); | ||
} | ||
|
||
a[mat-flat-button] { | ||
a { | ||
@include mat.button-overrides( | ||
( | ||
filled-container-color: var(--mat-sys-on-primary), | ||
text-label-text-color: var(--mat-sys-secondary), | ||
filled-container-color: var(--mat-sys-primary), | ||
) | ||
); | ||
@include mat.icon-button-overrides( | ||
( | ||
icon-color: var(--mat-sys-on-primary), | ||
) | ||
); | ||
} | ||
|
||
.mat-mdc-button:not(:disabled) { | ||
color: #fff; | ||
} | ||
|
||
a#activePage { | ||
background-color: var(--mat-sys-secondary-container); | ||
background-color: var(--mat-sys-secondary); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters