From 60b84d7d6c9879387e9cc16cdeb1ea145beedf53 Mon Sep 17 00:00:00 2001 From: mchouliara Date: Thu, 26 Sep 2024 17:39:10 +0300 Subject: [PATCH] remove node_modules/bootstrap/scss/boostrap from styles, move styles.scss to bottom of angular.json style declarations --- frontend/angular.json | 4 ++-- frontend/src/styles.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/angular.json b/frontend/angular.json index e7eff87c9..a2fde21c5 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -26,8 +26,8 @@ ], "styles": [ "node_modules/bootstrap/dist/css/bootstrap.min.css", - "src/styles.scss", "src/assets/scss/material-dashboard.scss", + "src/styles.scss", "node_modules/cookieconsent/build/cookieconsent.min.css" ], "scripts": [ @@ -113,8 +113,8 @@ "tsConfig": "src/tsconfig.spec.json", "scripts": [], "styles": [ + "src/assets/scss/material-dashboard.scss", "src/styles.scss", - "src/assets/scss/material-dashboard.scss", "node_modules/tinymce/tinymce.min.js" ], "assets": [ diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index b5920bdaa..fdaf91279 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -7,7 +7,7 @@ //Material-Bootstrap configuration @import "assets/scss/bootstrap-material"; -@import "/node_modules/bootstrap/scss/bootstrap"; +// @import "/node_modules/bootstrap/scss/bootstrap"; // @import "@covalent/core/theming/all-theme"; // @import "@angular/material/theming"; // @import '../node_modules/@angular/material/theming'; @@ -158,7 +158,7 @@ a { color: var(--link-color); &:hover { color: var(--primary-color); - text-decoration: unset; + text-decoration: none; } &.color-unset { color: #000000;