From 44fea93b2a2843378d50d35292f935c1ad5c2f0e Mon Sep 17 00:00:00 2001 From: Jannik Pulfer Date: Tue, 3 Oct 2023 07:58:32 +0200 Subject: [PATCH] move import to beginning of file in custom_angular.scss --- frontend/src/style/custom_angular.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/style/custom_angular.scss b/frontend/src/style/custom_angular.scss index 604732dbbc..4534f85927 100644 --- a/frontend/src/style/custom_angular.scss +++ b/frontend/src/style/custom_angular.scss @@ -1,5 +1,6 @@ @use "@angular/material" as mat; @import "_variables"; +@import "custom_angular.components"; $my-primary: mat.define-palette($pz-dark-blue-palette, 500); $my-accent: mat.define-palette(mat.$grey-palette); @@ -15,5 +16,4 @@ $pz-theme: mat.define-light-theme( ) ); -@import "custom_angular.components"; @include mat.all-component-themes($pz-theme);