Skip to content

Commit

Permalink
🗑️(frontend) define SASS color variable out of bootstrap v5
Browse files Browse the repository at this point in the history
$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.
  • Loading branch information
carofun committed Jun 10, 2021
1 parent 329ba5d commit 3fb50b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/frontend/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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%);

0 comments on commit 3fb50b2

Please sign in to comment.