From 2ad25d163aecf8a025852016c2dceb99c081a0db Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Thu, 1 Dec 2022 14:22:48 +0000 Subject: [PATCH] Fixes for issues 26 and 22 --- angular.json | 1 - src/app/app.component.scss | 7 +++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/angular.json b/angular.json index 82a692c..c477d6c 100644 --- a/angular.json +++ b/angular.json @@ -43,7 +43,6 @@ "optimization": true, "outputHashing": "all", "sourceMap": false, - "extractCss": true, "namedChunks": false, "aot": true, "extractLicenses": true, diff --git a/src/app/app.component.scss b/src/app/app.component.scss index 80fd5ba..e7ea2bd 100644 --- a/src/app/app.component.scss +++ b/src/app/app.component.scss @@ -1,3 +1,10 @@ +mat-toolbar { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; +} + mat-divider { border-color: rgb(175, 175, 175); }