diff --git a/src/components/Calender/styles/index.scss b/src/components/Calender/styles/index.scss index feb023d..27f5839 100644 --- a/src/components/Calender/styles/index.scss +++ b/src/components/Calender/styles/index.scss @@ -80,7 +80,7 @@ $font-size-label: 10px; justify-content: center; width: 32px; height: 32px; - border-radius: 50%; + border-radius: $uni-border-radius-circle; transition: background-color 0.2s; &:active { diff --git a/src/components/CreateServiceOrder/styles/index.scss b/src/components/CreateServiceOrder/styles/index.scss index ac99653..1207067 100644 --- a/src/components/CreateServiceOrder/styles/index.scss +++ b/src/components/CreateServiceOrder/styles/index.scss @@ -28,7 +28,7 @@ width: 24px; height: 24px; margin-right: 8px; - border-radius: 50%; + border-radius: $uni-border-radius-circle; background-color: #ffa500; display: flex; align-items: center; diff --git a/src/components/OrderCardItem/styles/index.scss b/src/components/OrderCardItem/styles/index.scss index 67e2139..1b784b4 100644 --- a/src/components/OrderCardItem/styles/index.scss +++ b/src/components/OrderCardItem/styles/index.scss @@ -15,7 +15,7 @@ .order-icon { width: 20px; height: 20px; - border-radius: 50%; + border-radius: $uni-border-radius-circle; background-color: #ffa500; display: flex; align-items: center; @@ -35,7 +35,7 @@ } .status-canceled { - color: #999; + color: $uni-text-color-grey; border: 1px solid #999; } diff --git a/src/components/SumCard/styles/index.scss b/src/components/SumCard/styles/index.scss index da86267..b2d036e 100644 --- a/src/components/SumCard/styles/index.scss +++ b/src/components/SumCard/styles/index.scss @@ -24,7 +24,7 @@ .sum-value { font-size: $uni-font-size-base; - color: #999; + color: $uni-text-color-grey; } .sum-discount { diff --git a/src/pages-order/order/components/OrderCard/index.vue b/src/pages-order/order/components/OrderCard/index.vue index 90a5d3b..22ad4f4 100644 --- a/src/pages-order/order/components/OrderCard/index.vue +++ b/src/pages-order/order/components/OrderCard/index.vue @@ -36,7 +36,7 @@