Skip to content

Commit 3aa370d

Browse files
committed
Add main-background-color scss variable ♻️
1 parent 8f7198b commit 3aa370d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

client/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ html {
5858
}
5959
6060
.v-main {
61-
background-color: #f5f5f5;
61+
background-color: $main-background-color;
6262
}
6363
6464
.v-main .view {

client/assets/stylesheets/common/_variables.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ $font-family-icons: "Material Design Icons";
1010
$font-family-primary: Poppins, Helvetica, Arial, sans-serif;
1111
$font-family-secondary: Roboto, Helvetica, Arial, sans-serif;
1212

13+
$main-background-color: #f5f5f5;
14+
1315
@mixin highlight($color) {
1416
border: none;
1517
box-shadow: 0 0 0 2px $color !important;

0 commit comments

Comments
 (0)