From 88dfba3d24935211331f8510d4ea13c6938de86f Mon Sep 17 00:00:00 2001 From: Yannick Lohse Date: Tue, 22 Oct 2019 10:29:42 +0200 Subject: [PATCH] feat: Update ghost button style --- stylus/components/button.styl | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/stylus/components/button.styl b/stylus/components/button.styl index 8ad6982991..2fdae8726e 100644 --- a/stylus/components/button.styl +++ b/stylus/components/button.styl @@ -10,7 +10,7 @@ regularTheme = { primaryColor: var(--dodgerBlue), secondaryColor: var(--dodgerBlue), activeColor: var(--scienceBlue), contrastColor: var(--white) } ghostTheme = { - primaryColor: var(--hawkesBlue), secondaryColor: var(--primaryColor), activeColor: var(--hawkesBlue), contrastColor: var(--primaryColor) + primaryColor: var(--zircon), secondaryColor: var(--frenchPass), activeColor: var(--frenchPass), contrastColor: var(--dodgerBlue) } highlightTheme = { primaryColor: var(--emerald), secondaryColor: var(--emerald), activeColor: var(--malachite), contrastColor: var(--white) @@ -113,11 +113,6 @@ $button--ghost themedBtn(ghostTheme) border-style dashed - &:active - &:hover - &:focus - border-color: var(--primaryColor) - $button--highlight themedBtn(highlightTheme)