diff --git a/src/components/organisms/Shop.svelte b/src/components/organisms/Shop.svelte index 9befffd..2320a4e 100644 --- a/src/components/organisms/Shop.svelte +++ b/src/components/organisms/Shop.svelte @@ -29,7 +29,7 @@

{shop.module_title}

{shop.module_text}

{#if shop.enabled} - - diff --git a/src/routes/shop/__layout.svelte b/src/routes/shop/__layout.svelte index 27e9d84..c5bff2b 100644 --- a/src/routes/shop/__layout.svelte +++ b/src/routes/shop/__layout.svelte @@ -3,6 +3,7 @@ import Metas from '$components/Metas.svelte' import SiteTitle from '$components/atoms/SiteTitle.svelte' import Image from '$components/atoms/Image.svelte' + import ButtonCircle from '$components/atoms/ButtonCircle.svelte' import PosterLayout from '$components/layouts/PosterLayout.svelte' import Poster from '$components/molecules/Poster.svelte' import EmailForm from '$components/molecules/EmailForm.svelte' diff --git a/src/style/atoms/_button-circle.scss b/src/style/atoms/_button-circle.scss index 6d9408f..c31503c 100644 --- a/src/style/atoms/_button-circle.scss +++ b/src/style/atoms/_button-circle.scss @@ -88,4 +88,9 @@ background-color: darken($color-secondary, 7); } } + + // Purple color + &--purple { + background-color: $color-primary-tertiary20; + } } \ No newline at end of file diff --git a/src/style/atoms/_button.scss b/src/style/atoms/_button.scss index a8f1d23..f926767 100644 --- a/src/style/atoms/_button.scss +++ b/src/style/atoms/_button.scss @@ -79,7 +79,7 @@ /* ** Color Variants */ - // Pink + // Pink Light &--pink { color: $color-text; background: $color-secondary-light; @@ -96,6 +96,24 @@ } } + // Pink + &--pink { + color: #fff; + background: $color-secondary; + + // Hover + &:hover { + color: $color-text; + background: $color-secondary; + } + .text-split__line { + &:last-child { + color: $color-text; + // color: #fff; + } + } + } + // Beige &--beige { $color-button: #F2D3B8;