diff --git a/src/components/organisms/Carousel.svelte b/src/components/organisms/Carousel.svelte index 5a1e9e4..4ebc8fb 100644 --- a/src/components/organisms/Carousel.svelte +++ b/src/components/organisms/Carousel.svelte @@ -54,6 +54,8 @@ const handleArrowClick = () => { if (!carousel.clickAllowed()) return + // TODO: Clicking should also define arrowDirection? Can click without moving and won't change direction + // Click only if carousel if being dragged if (arrowDirection === 'prev') { carousel.scrollPrev() diff --git a/src/components/organisms/Cart.svelte b/src/components/organisms/Cart.svelte index 9fa4b06..d922b03 100644 --- a/src/components/organisms/Cart.svelte +++ b/src/components/organisms/Cart.svelte @@ -160,7 +160,6 @@ text="Checkout" color="pink" size="small" - disabled={!$cartData} /> {/if} diff --git a/src/style/atoms/_button.scss b/src/style/atoms/_button.scss index 4410b57..fe1f1be 100644 --- a/src/style/atoms/_button.scss +++ b/src/style/atoms/_button.scss @@ -108,7 +108,6 @@ } .text-split__line { &:last-child { - color: $color-text; color: $color-primary-dark; } }