From 6649d50e3e1a5b52cbc559407d8b6e8a663c67d9 Mon Sep 17 00:00:00 2001 From: Joy Cheng Date: Fri, 20 Aug 2021 14:51:32 +0800 Subject: [PATCH] [edit] timeline color --- app/assets/style/components/_timeline.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/style/components/_timeline.scss b/app/assets/style/components/_timeline.scss index 8841525..f47530d 100644 --- a/app/assets/style/components/_timeline.scss +++ b/app/assets/style/components/_timeline.scss @@ -11,7 +11,7 @@ left: 0; right: 0; height: 3px; - background-color: map-get($theme-colors, "primary"); + background-color: map-get($theme-colors, "secondary"); } } @@ -28,13 +28,13 @@ height: 8px; border-radius: 50%; transform: translate(-50%, -25%); - background-color:map-get($theme-colors, "primary"); + background-color:map-get($theme-colors, "secondary"); } &-undone { &::after { content: " "; - border: 1px solid map-get($theme-colors, "primary"); + border: 1px solid map-get($theme-colors, "secondary"); background-color: map-get($theme-colors, "white");; } }