Skip to content

Commit b4d7e12

Browse files
committed
🩹(frontend) define SASS color variable
$table-head-color used in saas fil is not set-up anymore as it used to be defined in bootstrap variables. 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.
1 parent 760e8ee commit b4d7e12

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/frontend/scss/_variables.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ $red: #fe3925;
99
// Relative path the the fontawesome webfonts (from the compiled CSS file)
1010
$fa-font-path: '../font';
1111

12-
$unread-color: lighten($red, 20%);
1312
$read-color: lighten($blue, 15%);
13+
$table-head-color: #495057;
14+
$unread-color: lighten($red, 20%);

0 commit comments

Comments
 (0)