Use variable colour assignment

This commit is contained in:
Matt-Yorkley
2018-10-02 11:10:21 +01:00
parent 54b17ac701
commit 017e3d14df
2 changed files with 3 additions and 1 deletions

View File

@@ -13,7 +13,7 @@
}
&.disabled {
background-color: #ccc;
background-color: $disabled_button;
cursor: default;
}
}

View File

@@ -8,8 +8,10 @@ $warning-red: #da5354;
$warning-orange: #da7f52;
$medium-grey: #919191;
$pale-blue: #cee1f4;
$light-grey: #ccc;
$admin-table-border: $pale-blue;
$modal-close-button-color: #de6060;
$modal-close-button-hover-color: #bf4545;
$disabled-button: $light-grey;