From c40e0c01b6df46dabd6b5130ddef1b4dad7ed058 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期一, 01 十一月 2021 13:24:27 +0800 Subject: [PATCH] update: 調整顏色變數名稱 --- PAMapp/components/Consultant/ConsultantCard.vue | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/PAMapp/components/Consultant/ConsultantCard.vue b/PAMapp/components/Consultant/ConsultantCard.vue index 53ad9ac..2b7525e 100644 --- a/PAMapp/components/Consultant/ConsultantCard.vue +++ b/PAMapp/components/Consultant/ConsultantCard.vue @@ -55,7 +55,7 @@ <style lang="scss" scoped> .rowStyle { padding: 10px; - background-color: #FFFFFF; + background-color: $PRIMARY_WHITE; margin-bottom: 10px; display: flex; justify-content: space-between; @@ -64,7 +64,7 @@ width: 10px; height: 10px; border-radius: 50px; - background-color: $yellow; + background-color: $YELLOW; margin: auto 0; } @@ -80,7 +80,7 @@ &:before { content: '\2605'; - color: $primaryRed; + color: $PRIMARY_RED; margin: 5px; } } @@ -97,20 +97,20 @@ } .delete { - color: $primaryRed; + color: $PRIMARY_RED; font-size: 14px; font-weight: bold; cursor: pointer; } .reservedBtn { - color: $skyBlue; + color: $SKY_BLUE; cursor: auto; &:hover { - color: $skyBlue; - border-color: $skyBlue; - background-color: $white; + color: $SKY_BLUE; + border-color: $SKY_BLUE; + background-color: $PRIMARY_WHITE; } } @@ -128,4 +128,4 @@ justify-content: space-between; } -</style> \ No newline at end of file +</style> -- Gitblit v1.8.0