Skip to content

Commit

Permalink
🩹(frontend) define SASS color variable
Browse files Browse the repository at this point in the history
$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.
  • Loading branch information
carofun committed Jun 9, 2021
1 parent 760e8ee commit b4d7e12
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 b4d7e12

Please sign in to comment.