From fc7afbf88f2f79425fcc4c9efeddf93f16c34f72 Mon Sep 17 00:00:00 2001 From: Nevio Di Gennaro Date: Tue, 10 Dec 2024 11:53:00 +0100 Subject: [PATCH] fix another scss deprecation because you shouldnt have declerations after nested rules --- frontend/src/style/_custom_angular.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/style/_custom_angular.scss b/frontend/src/style/_custom_angular.scss index 447648e951..29ac6cbb80 100644 --- a/frontend/src/style/_custom_angular.scss +++ b/frontend/src/style/_custom_angular.scss @@ -20,5 +20,7 @@ $pz-theme: mat.m2-define-light-theme( .header-form-field { @include mat.form-field-density(-4); - border-radius: 5px; + & { + border-radius: 5px; + } }