From e71652303a66f09b1866c2be4227ec8a713e6099 Mon Sep 17 00:00:00 2001 From: Shelby Kay Date: Fri, 5 Nov 2021 22:45:11 +0100 Subject: [PATCH] Add gray variant to button circle --- src/components/molecules/PosterCart.svelte | 2 +- src/style/atoms/_button-circle.scss | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/components/molecules/PosterCart.svelte b/src/components/molecules/PosterCart.svelte index 39951c6..d142c1a 100644 --- a/src/components/molecules/PosterCart.svelte +++ b/src/components/molecules/PosterCart.svelte @@ -14,7 +14,7 @@
- + diff --git a/src/style/atoms/_button-circle.scss b/src/style/atoms/_button-circle.scss index 4ffcbac..2a39811 100644 --- a/src/style/atoms/_button-circle.scss +++ b/src/style/atoms/_button-circle.scss @@ -72,7 +72,6 @@ &--tiny { height: 24px; width: 24px; - background-color: #F2F2F2; img, svg { width: 8px; @@ -106,4 +105,13 @@ &--purple { background-color: $color-primary-tertiary20; } + + // Gray color + &--gray { + background-color: #F2F2F2; + + &:hover { + background-color: #D2D2D2; + } + } } \ No newline at end of file