summaryrefslogtreecommitdiff
path: root/src/assets/styles
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-08-17 17:55:47 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-08-17 17:57:13 +0300
commitdfc4fd3fba73488ad1591cf5278ae9e1ff351b64 (patch)
treefaa573fd008b65009ead3f9dd7d0ab0244011078 /src/assets/styles
parent1f4eaa1695bde5891a786784a8845b54ad18e1f9 (diff)
downloadwebui-vue-dfc4fd3fba73488ad1591cf5278ae9e1ff351b64.tar.xz
Fix Sass build error
Replaced $success-light Sass variable with theme-color-light function. We removed the variable and forgot to update this partial. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: If4422241cae10efdb0e17b31327465ee4d0a6dae
Diffstat (limited to 'src/assets/styles')
-rw-r--r--src/assets/styles/bmc/custom/_card.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/assets/styles/bmc/custom/_card.scss b/src/assets/styles/bmc/custom/_card.scss
index 12721890..5f2a5962 100644
--- a/src/assets/styles/bmc/custom/_card.scss
+++ b/src/assets/styles/bmc/custom/_card.scss
@@ -1,5 +1,5 @@
.card {
.bg-success {
- background-color: $success-light !important;
+ background-color: theme-color-light('success')!important;
}
} \ No newline at end of file