From b2a713ef32f5533dff1c579b6bf094dad9a75913 Mon Sep 17 00:00:00 2001 From: carofun Date: Wed, 9 Jun 2021 16:22:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(frontend)=20define=20SASS=20color?= =?UTF-8?q?=20variable=20with=20bootstrap=20v5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit $table-head-color used in saas fil is not set-up anymore. The upgrade of the library bootrstrap version 4 to 5 doesn't have this variable pre-configured anymore. As a result, the frontend won't be able to be build anymore. We fix this issue by giving a color to this variable so that Ashley can use bootstrap 5. --- src/frontend/scss/_variables.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/scss/_variables.scss b/src/frontend/scss/_variables.scss index aaf41a35..2033d59f 100644 --- a/src/frontend/scss/_variables.scss +++ b/src/frontend/scss/_variables.scss @@ -9,5 +9,6 @@ $red: #fe3925; // Relative path the the fontawesome webfonts (from the compiled CSS file) $fa-font-path: '../font'; -$unread-color: lighten($red, 20%); $read-color: lighten($blue, 15%); +$table-head-color: #495057; +$unread-color: lighten($red, 20%);