From eb25326516ec92111965019c22b30763993d1bb8 Mon Sep 17 00:00:00 2001 From: richard1015 <51844712@qq.com> Date: Tue, 23 Mar 2021 17:39:31 +0800 Subject: [PATCH] style: glob variable modify --- src/styles/variables.scss | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/styles/variables.scss b/src/styles/variables.scss index 2dffa5257..717e4b083 100644 --- a/src/styles/variables.scss +++ b/src/styles/variables.scss @@ -55,9 +55,7 @@ $button-primary-border-color: $primary-color; $button-primary-background-color: linear-gradient( 135deg, $primary-color 0%, - rgba(250, 63, 25, 1) 45%, - rgba(250, 89, 25, 1) 83%, - rgba(250, 100, 25, 1) 100% + $primary-color-end 100% ); $button-info-color: $white; $button-info-border-color: rgba(73, 106, 242, 1); @@ -77,8 +75,8 @@ $button-success-background-color: linear-gradient( ); $button-danger-color: $white; -$button-danger-border-color: $primary-color; -$button-danger-background-color: $primary-color; +$button-danger-border-color: rgba(250, 44, 25, 1); +$button-danger-background-color: rgba(250, 44, 25, 1); $button-warning-color: $white; $button-warning-border-color: rgba(255, 158, 13, 1); $button-warning-background-color: linear-gradient( @@ -193,7 +191,7 @@ $notify-height: 44px; $notify-base-background-color: linear-gradient( 135deg, - $primary-color 0%, + rgba(250, 44, 25, 1) 0%, rgba(250, 63, 25, 1) 45%, rgba(250, 89, 25, 1) 83%, rgba(250, 100, 25, 1) 100% -- GitLab