Merge branch 'v2' into v2-shop

# Conflicts:
#	src/components/molecules/PosterCart.svelte
#	src/routes/shop/__layout.svelte
#	src/style/atoms/_button-circle.scss
#	src/style/organisms/_cart.scss
#	src/style/pages/_shop.scss
#	src/style/style.scss
This commit is contained in:
2021-11-07 12:07:18 +01:00
7 changed files with 130 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
<script lang="ts">
import { getContext } from 'svelte'
// Components
import Button from '$components/atoms/Button.svelte'
import Image from '$components/atoms/Image.svelte'
const { locations, shop } = getContext('global')
</script>
<aside class="notification-cart shadow-small">
<div class="notification-cart__left">
<img src="/images/issue-1.jpg" width={58} height={88} alt="">
</div>
<div class="notification-cart__right">
<h3>Added to cart</h3>
<p>Houses Of Melbourne</p>
</div>
</aside>