From 427a954a5be6f552a03e46a817a97f81ab037989 Mon Sep 17 00:00:00 2001 From: Shelby Kay Date: Fri, 5 Nov 2021 22:35:17 +0100 Subject: [PATCH 01/13] Edit clamp width for cart --- src/style/pages/_shop.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style/pages/_shop.scss b/src/style/pages/_shop.scss index 8891520..46dfffc 100644 --- a/src/style/pages/_shop.scss +++ b/src/style/pages/_shop.scss @@ -14,7 +14,7 @@ @include bp (sm) { top: 24px; right: 24px; - width: clamp(320px, 35vw, 500px); + width: clamp(320px, 45vw, 500px); height: calc(100vh - 48px); max-height: 1000px; } From 460fe9420c9ec3dc0b2bfac0176348b2b6374d81 Mon Sep 17 00:00:00 2001 From: Shelby Kay Date: Fri, 5 Nov 2021 22:40:15 +0100 Subject: [PATCH 02/13] Create notification for cart --- .../molecules/NotificationCart.svelte | 19 ++++++ src/routes/shop/__layout.svelte | 4 ++ src/style/molecules/_notification-cart.scss | 60 +++++++++++++++++++ src/style/pages/_shop.scss | 13 ++++ src/style/style.scss | 1 + 5 files changed, 97 insertions(+) create mode 100644 src/components/molecules/NotificationCart.svelte create mode 100644 src/style/molecules/_notification-cart.scss diff --git a/src/components/molecules/NotificationCart.svelte b/src/components/molecules/NotificationCart.svelte new file mode 100644 index 0000000..b2ff7dc --- /dev/null +++ b/src/components/molecules/NotificationCart.svelte @@ -0,0 +1,19 @@ + + + \ No newline at end of file diff --git a/src/routes/shop/__layout.svelte b/src/routes/shop/__layout.svelte index 7255664..f5bd29f 100644 --- a/src/routes/shop/__layout.svelte +++ b/src/routes/shop/__layout.svelte @@ -7,6 +7,7 @@ import CartButton from '$components/atoms/CartButton.svelte' import PosterLayout from '$components/layouts/PosterLayout.svelte' import Poster from '$components/molecules/Poster.svelte' + import NotificationCart from '$components/molecules/NotificationCart.svelte' import EmailForm from '$components/molecules/EmailForm.svelte' import Cart from '$components/organisms/Cart.svelte' @@ -79,6 +80,9 @@ +
+ +
diff --git a/src/style/molecules/_notification-cart.scss b/src/style/molecules/_notification-cart.scss new file mode 100644 index 0000000..f960639 --- /dev/null +++ b/src/style/molecules/_notification-cart.scss @@ -0,0 +1,60 @@ +.notification-cart { + display: flex; + background-color: #fff; + color: $color-gray; + border-radius: 6px; + align-items: center; + overflow: hidden; + cursor: pointer; + + // Left Image + &__left { + margin-right: 20px; + width: 100px; + height: 150px; + + @include bp (sm) { + margin-right: 24px; + width: 58px; + height: 88px; + } + + img { + display: block; + width: 100%; + height: 100%; + object-fit: cover; + } + } + + // Details + &__right { + display: flex; + flex-direction: column; + margin-right: 24px; + justify-content: center; + + // Poster Title + h3 { + font-family: $font-serif; + color: $color-secondary; + font-size: rem(20px); + + @include bp (sm) { + font-size: rem(18px); + } + } + // Text + p { + font-size: rem(12px); + line-height: 1.4; + max-width: 124px; + margin: 4px 0; + + @include bp (sm) { + font-size: rem(13px); + max-width: none; + } + } + } +} \ No newline at end of file diff --git a/src/style/pages/_shop.scss b/src/style/pages/_shop.scss index 46dfffc..c82864d 100644 --- a/src/style/pages/_shop.scss +++ b/src/style/pages/_shop.scss @@ -105,6 +105,19 @@ border-radius: 100%; } } + + .notifications { + position: absolute; + z-index: 100; + top: 72px; + right: 0; + + & > * { + &:not(:last-child) { + margin-bottom: 8px; + } + } + } } // Intro diff --git a/src/style/style.scss b/src/style/style.scss index 04bfc64..d1d74b7 100644 --- a/src/style/style.scss +++ b/src/style/style.scss @@ -52,6 +52,7 @@ @import "molecules/issue"; @import "molecules/newsletter-form"; @import "molecules/poster"; +@import "molecules/notification-cart"; // Organisms @import "organisms/locations"; From 01a87cc0cf65080fe522337ab2cf466ba306aa99 Mon Sep 17 00:00:00 2001 From: Shelby Kay Date: Fri, 5 Nov 2021 22:40:29 +0100 Subject: [PATCH 03/13] Add tiny variant to button circle style --- src/style/atoms/_button-circle.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/style/atoms/_button-circle.scss b/src/style/atoms/_button-circle.scss index c31503c..4ffcbac 100644 --- a/src/style/atoms/_button-circle.scss +++ b/src/style/atoms/_button-circle.scss @@ -68,6 +68,19 @@ /* ** Variants */ + // Tiny size + &--tiny { + height: 24px; + width: 24px; + background-color: #F2F2F2; + + img, svg { + width: 8px; + height: 8px; + object-fit: contain; + } + } + // Small size &--small { height: 32px; From 163fbe75db9fec89306f9f5aae670b2bb6c470cf Mon Sep 17 00:00:00 2001 From: Shelby Kay Date: Fri, 5 Nov 2021 22:41:02 +0100 Subject: [PATCH 04/13] Add cross (remove) icon to poster cart --- src/components/molecules/PosterCart.svelte | 12 +++++++++--- src/style/organisms/_cart.scss | 10 +++++++++- src/style/pages/_shop.scss | 6 +++--- 3 files changed, 21 insertions(+), 7 deletions(-) diff --git a/src/components/molecules/PosterCart.svelte b/src/components/molecules/PosterCart.svelte index 8140c6d..39951c6 100644 --- a/src/components/molecules/PosterCart.svelte +++ b/src/components/molecules/PosterCart.svelte @@ -1,9 +1,8 @@ -
+
diff --git a/src/style/atoms/_cart-button.scss b/src/style/atoms/_cart-button.scss new file mode 100644 index 0000000..d22aadb --- /dev/null +++ b/src/style/atoms/_cart-button.scss @@ -0,0 +1,27 @@ +// Cart +.cart-button { + display: none; + position: relative; + + @include bp (sm) { + display: flex; + margin-left: auto; + } + + .quantity { + position: absolute; + top: 50%; + left: -12px; + transform: translateY(-50%); + display: flex; + align-items: center; + justify-content: center; + width: 22px; + height: 22px; + font-size: rem(11px); + font-weight: 600; + color: #fff; + background-color: $color-secondary; + border-radius: 100%; + } +} \ No newline at end of file diff --git a/src/style/pages/_shop.scss b/src/style/pages/_shop.scss index ad6abdc..1a39a72 100644 --- a/src/style/pages/_shop.scss +++ b/src/style/pages/_shop.scss @@ -440,4 +440,4 @@ } } } -} \ No newline at end of file +} diff --git a/src/style/style.scss b/src/style/style.scss index d1d74b7..bf4446a 100644 --- a/src/style/style.scss +++ b/src/style/style.scss @@ -43,6 +43,7 @@ @import "atoms/box-cta"; @import "atoms/site-title"; @import "atoms/photo"; +@import "atoms/cart-button"; // Molecules @import "molecules/photo-card"; From d087a58f36bfcf763764a7f5e837b31eab8280fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Fri, 5 Nov 2021 17:49:34 +0100 Subject: [PATCH 07/13] Change Cart button naming --- .../atoms/{CartButton.svelte => ButtonCart.svelte} | 2 +- src/routes/shop/__layout.svelte | 8 ++++---- src/style/atoms/{_cart-button.scss => _button-cart.scss} | 2 +- src/style/style.scss | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) rename src/components/atoms/{CartButton.svelte => ButtonCart.svelte} (94%) rename src/style/atoms/{_cart-button.scss => _button-cart.scss} (97%) diff --git a/src/components/atoms/CartButton.svelte b/src/components/atoms/ButtonCart.svelte similarity index 94% rename from src/components/atoms/CartButton.svelte rename to src/components/atoms/ButtonCart.svelte index c4f7566..2e2cc76 100644 --- a/src/components/atoms/CartButton.svelte +++ b/src/components/atoms/ButtonCart.svelte @@ -8,7 +8,7 @@ } -
+
diff --git a/src/routes/shop/__layout.svelte b/src/routes/shop/__layout.svelte index f5bd29f..c5c4812 100644 --- a/src/routes/shop/__layout.svelte +++ b/src/routes/shop/__layout.svelte @@ -4,7 +4,7 @@ import Metas from '$components/Metas.svelte' import SiteTitle from '$components/atoms/SiteTitle.svelte' import Image from '$components/atoms/Image.svelte' - import CartButton from '$components/atoms/CartButton.svelte' + import ButtonCart from '$components/atoms/ButtonCart.svelte' import PosterLayout from '$components/layouts/PosterLayout.svelte' import Poster from '$components/molecules/Poster.svelte' import NotificationCart from '$components/molecules/NotificationCart.svelte' @@ -52,7 +52,7 @@ - +
@@ -79,7 +79,7 @@ - +
@@ -180,4 +180,4 @@ } } } - \ No newline at end of file + diff --git a/src/style/atoms/_cart-button.scss b/src/style/atoms/_button-cart.scss similarity index 97% rename from src/style/atoms/_cart-button.scss rename to src/style/atoms/_button-cart.scss index d22aadb..23867eb 100644 --- a/src/style/atoms/_cart-button.scss +++ b/src/style/atoms/_button-cart.scss @@ -1,5 +1,5 @@ // Cart -.cart-button { +.button-cart { display: none; position: relative; diff --git a/src/style/style.scss b/src/style/style.scss index bf4446a..7029a68 100644 --- a/src/style/style.scss +++ b/src/style/style.scss @@ -37,13 +37,13 @@ // Atoms @import "atoms/button"; @import "atoms/button-circle"; +@import "atoms/button-cart"; @import "atoms/badge"; @import "atoms/arrow"; @import "atoms/discover"; @import "atoms/box-cta"; @import "atoms/site-title"; @import "atoms/photo"; -@import "atoms/cart-button"; // Molecules @import "molecules/photo-card"; From d68353cf18afeaf774105e5bb9b3eb1b5e6651e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Sat, 6 Nov 2021 15:12:44 +0100 Subject: [PATCH 08/13] Change Cart button icon and size --- src/components/atoms/ButtonCart.svelte | 7 +++---- src/style/atoms/_button-cart.scss | 9 +++++++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/components/atoms/ButtonCart.svelte b/src/components/atoms/ButtonCart.svelte index 2e2cc76..611535e 100644 --- a/src/components/atoms/ButtonCart.svelte +++ b/src/components/atoms/ButtonCart.svelte @@ -2,15 +2,14 @@ import { cartOpen, cartAmount } from '$utils/store' import ButtonCircle from './ButtonCircle.svelte' - - const handleCartOpening = () => { + const openCart = () => { $cartOpen = true }
- - + + Cart icon {#if $cartAmount > 0} diff --git a/src/style/atoms/_button-cart.scss b/src/style/atoms/_button-cart.scss index 23867eb..cdc09ea 100644 --- a/src/style/atoms/_button-cart.scss +++ b/src/style/atoms/_button-cart.scss @@ -8,6 +8,15 @@ margin-left: auto; } + // Icon + img { + display: block; + width: 27px; + height: 27px; + margin-top: -3px; + } + + // Quantity label .quantity { position: absolute; top: 50%; From da58e09b211e69fcf3ec478f3946ccf7c8083be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Sun, 7 Nov 2021 11:46:31 +0100 Subject: [PATCH 09/13] [chore] Update npm packages --- package.json | 2 +- pnpm-lock.yaml | 80 +++++++++--------------- src/components/organisms/Carousel.svelte | 1 - 3 files changed, 29 insertions(+), 54 deletions(-) diff --git a/package.json b/package.json index 1e178d0..f2596b0 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "@sveltejs/kit": "next", "@typescript-eslint/eslint-plugin": "^5.3.0", "@typescript-eslint/parser": "^5.3.0", - "eslint": "^8.1.0", + "eslint": "^8.2.0", "eslint-plugin-svelte3": "^3.2.1", "sass": "^1.43.4", "svelte": "^3.44.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f8094e5..a4b613d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,7 +8,7 @@ specifiers: '@typescript-eslint/parser': ^5.3.0 dayjs: ^1.10.7 embla-carousel: ^5.0.1 - eslint: ^8.1.0 + eslint: ^8.2.0 eslint-plugin-svelte3: ^3.2.1 focus-visible: ^5.2.0 sanitize.css: ^13.0.0 @@ -28,11 +28,11 @@ dependencies: devDependencies: '@sveltejs/adapter-node': 1.0.0-next.55 '@sveltejs/adapter-vercel': 1.0.0-next.31 - '@sveltejs/kit': 1.0.0-next.193_sass@1.43.4+svelte@3.44.1 - '@typescript-eslint/eslint-plugin': 5.3.0_f8873316f48f7781ccc3e081fc76e214 - '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.4.4 - eslint: 8.1.0 - eslint-plugin-svelte3: 3.2.1_eslint@8.1.0+svelte@3.44.1 + '@sveltejs/kit': 1.0.0-next.195_sass@1.43.4+svelte@3.44.1 + '@typescript-eslint/eslint-plugin': 5.3.0_c2f57e23dad63fa3be14ade7e20e2af7 + '@typescript-eslint/parser': 5.3.0_eslint@8.2.0+typescript@4.4.4 + eslint: 8.2.0 + eslint-plugin-svelte3: 3.2.1_eslint@8.2.0+svelte@3.44.1 sass: 1.43.4 svelte: 3.44.1 svelte-check: 2.2.8_sass@1.43.4+svelte@3.44.1 @@ -42,8 +42,8 @@ devDependencies: packages: - /@eslint/eslintrc/1.0.3: - resolution: {integrity: sha512-DHI1wDPoKCBPoLZA3qDR91+3te/wDSc1YhKg3jR8NxKKRJq2hwHwcWv31cSwSYvIBrmbENoYMWcenW8uproQqg==} + /@eslint/eslintrc/1.0.4: + resolution: {integrity: sha512-h8Vx6MdxwWI2WM8/zREHMoqdgLNXEL4QX3MWSVMdyNJGvXVOs+6lp+m2hc3FnuMHDc4poxFNI20vCk0OmI4G0Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 @@ -52,7 +52,7 @@ packages: globals: 13.12.0 ignore: 4.0.6 import-fresh: 3.3.0 - js-yaml: 3.14.1 + js-yaml: 4.1.0 minimatch: 3.0.4 strip-json-comments: 3.1.1 transitivePeerDependencies: @@ -116,8 +116,8 @@ packages: esbuild: 0.13.12 dev: true - /@sveltejs/kit/1.0.0-next.193_sass@1.43.4+svelte@3.44.1: - resolution: {integrity: sha512-JRe7ZTZONNL2t+uFUkrT6HDWajD/Dp0lDMiB4FODZAtQLx94PKit0I699/dHrQR0qpzE3gYipqtxInTWasFpBg==} + /@sveltejs/kit/1.0.0-next.195_sass@1.43.4+svelte@3.44.1: + resolution: {integrity: sha512-R2X4FgzXQhp63XOik6S1Flw91S2CEA7sTxdsnNFrq3O+bIN7pQhJhkm6zgH68MZANdDcq8oIiSRkxT4M3t1+jQ==} engines: {node: '>=14.13'} hasBin: true peerDependencies: @@ -177,7 +177,7 @@ packages: '@types/node': 16.11.6 dev: true - /@typescript-eslint/eslint-plugin/5.3.0_f8873316f48f7781ccc3e081fc76e214: + /@typescript-eslint/eslint-plugin/5.3.0_c2f57e23dad63fa3be14ade7e20e2af7: resolution: {integrity: sha512-ARUEJHJrq85aaiCqez7SANeahDsJTD3AEua34EoQN9pHS6S5Bq9emcIaGGySt/4X2zSi+vF5hAH52sEen7IO7g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -188,11 +188,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 5.3.0_eslint@8.1.0+typescript@4.4.4 - '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.4.4 + '@typescript-eslint/experimental-utils': 5.3.0_eslint@8.2.0+typescript@4.4.4 + '@typescript-eslint/parser': 5.3.0_eslint@8.2.0+typescript@4.4.4 '@typescript-eslint/scope-manager': 5.3.0 debug: 4.3.2 - eslint: 8.1.0 + eslint: 8.2.0 functional-red-black-tree: 1.0.1 ignore: 5.1.9 regexpp: 3.2.0 @@ -203,7 +203,7 @@ packages: - supports-color dev: true - /@typescript-eslint/experimental-utils/5.3.0_eslint@8.1.0+typescript@4.4.4: + /@typescript-eslint/experimental-utils/5.3.0_eslint@8.2.0+typescript@4.4.4: resolution: {integrity: sha512-NFVxYTjKj69qB0FM+piah1x3G/63WB8vCBMnlnEHUsiLzXSTWb9FmFn36FD9Zb4APKBLY3xRArOGSMQkuzTF1w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -213,15 +213,15 @@ packages: '@typescript-eslint/scope-manager': 5.3.0 '@typescript-eslint/types': 5.3.0 '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.4.4 - eslint: 8.1.0 + eslint: 8.2.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.1.0 + eslint-utils: 3.0.0_eslint@8.2.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.4.4: + /@typescript-eslint/parser/5.3.0_eslint@8.2.0+typescript@4.4.4: resolution: {integrity: sha512-rKu/yAReip7ovx8UwOAszJVO5MgBquo8WjIQcp1gx4pYQCwYzag+I5nVNHO4MqyMkAo0gWt2gWUi+36gWAVKcw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -235,7 +235,7 @@ packages: '@typescript-eslint/types': 5.3.0 '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.4.4 debug: 4.3.2 - eslint: 8.1.0 + eslint: 8.2.0 typescript: 4.4.4 transitivePeerDependencies: - supports-color @@ -331,12 +331,6 @@ packages: picomatch: 2.3.0 dev: true - /argparse/1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - dependencies: - sprintf-js: 1.0.3 - dev: true - /argparse/2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} dev: true @@ -649,14 +643,14 @@ packages: engines: {node: '>=10'} dev: true - /eslint-plugin-svelte3/3.2.1_eslint@8.1.0+svelte@3.44.1: + /eslint-plugin-svelte3/3.2.1_eslint@8.2.0+svelte@3.44.1: resolution: {integrity: sha512-YoBR9mLoKCjGghJ/gvpnFZKaMEu/VRcuxpSRS8KuozuEo7CdBH7bmBHa6FmMm0i4kJnOyx+PVsaptz96K6H/4Q==} engines: {node: '>=10'} peerDependencies: eslint: '>=6.0.0' svelte: ^3.2.0 dependencies: - eslint: 8.1.0 + eslint: 8.2.0 svelte: 3.44.1 dev: true @@ -676,13 +670,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.1.0: + /eslint-utils/3.0.0_eslint@8.2.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.1.0 + eslint: 8.2.0 eslint-visitor-keys: 2.1.0 dev: true @@ -696,12 +690,12 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.1.0: - resolution: {integrity: sha512-JZvNneArGSUsluHWJ8g8MMs3CfIEzwaLx9KyH4tZ2i+R2/rPWzL8c0zg3rHdwYVpN/1sB9gqnjHwz9HoeJpGHw==} + /eslint/8.2.0: + resolution: {integrity: sha512-erw7XmM+CLxTOickrimJ1SiF55jiNlVSp2qqm0NuBWPtHYQCegD5ZMaW0c3i5ytPqL+SSLaCxdvQXFPLJn+ABw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint/eslintrc': 1.0.3 + '@eslint/eslintrc': 1.0.4 '@humanwhocodes/config-array': 0.6.0 ajv: 6.12.6 chalk: 4.1.2 @@ -711,7 +705,7 @@ packages: enquirer: 2.3.6 escape-string-regexp: 4.0.0 eslint-scope: 6.0.0 - eslint-utils: 3.0.0_eslint@8.1.0 + eslint-utils: 3.0.0_eslint@8.2.0 eslint-visitor-keys: 3.0.0 espree: 9.0.0 esquery: 1.4.0 @@ -752,12 +746,6 @@ packages: eslint-visitor-keys: 3.0.0 dev: true - /esprima/4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true - dev: true - /esquery/1.4.0: resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} engines: {node: '>=0.10'} @@ -1006,14 +994,6 @@ packages: resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} dev: true - /js-yaml/3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - dev: true - /js-yaml/4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true @@ -1337,10 +1317,6 @@ packages: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} dev: true - /sprintf-js/1.0.3: - resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} - dev: true - /strip-ansi/6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} diff --git a/src/components/organisms/Carousel.svelte b/src/components/organisms/Carousel.svelte index 838ccdd..5a1e9e4 100644 --- a/src/components/organisms/Carousel.svelte +++ b/src/components/organisms/Carousel.svelte @@ -1,7 +1,6 @@ {/if}
+
Back to Houses Of @@ -68,7 +93,7 @@ />
-