Remove About section on Shop
This commit is contained in:
@@ -152,14 +152,6 @@
|
||||
<ButtonCart />
|
||||
</nav>
|
||||
|
||||
<section class="shop-page__about grid">
|
||||
<div class="description grid text-normal">
|
||||
<div class="description__inner">
|
||||
{@html shop.about}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<PosterLayout
|
||||
product={product}
|
||||
shopProduct={shopProduct}
|
||||
@@ -168,6 +160,7 @@
|
||||
<PostersGrid {posters} />
|
||||
</PageTransition>
|
||||
|
||||
|
||||
<script context="module" lang="ts">
|
||||
/** @type {import('@sveltejs/kit').Load} */
|
||||
export async function load ({ url, params, fetch, session, stuff }) {
|
||||
|
||||
@@ -151,14 +151,6 @@
|
||||
<ButtonCart />
|
||||
</nav>
|
||||
|
||||
<section class="shop-page__about grid">
|
||||
<div class="description grid text-normal">
|
||||
<div class="description__inner">
|
||||
{@html shop.about}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<PosterLayout
|
||||
product={product}
|
||||
shopProduct={shopProduct}
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
|
||||
// Sections
|
||||
@import "shop/intro";
|
||||
@import "shop/about";
|
||||
@import "shop/posters";
|
||||
|
||||
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
/*
|
||||
** Shop: About
|
||||
*/
|
||||
&__about {
|
||||
background-color: $color-cream;
|
||||
color: $color-text;
|
||||
|
||||
.description {
|
||||
--columns: 8;
|
||||
grid-column: 1 / span var(--columns);
|
||||
margin-bottom: -96px;
|
||||
padding: 88px 0 160px;
|
||||
font-size: rem(18px);
|
||||
font-weight: 200;
|
||||
white-space: pre-line;
|
||||
background: #fff;
|
||||
border-radius: 0 0 12px 0;
|
||||
box-shadow: 0 0 16px rgba(#000, 0.05);
|
||||
|
||||
@include bp (mob-lg) {
|
||||
--columns: 7;
|
||||
}
|
||||
@include bp (sm) {
|
||||
--columns: 17;
|
||||
margin-bottom: -160px;
|
||||
padding: 160px 0 274px;
|
||||
font-size: rem(22px);
|
||||
}
|
||||
@include bp (lg) {
|
||||
--columns: 13;
|
||||
}
|
||||
|
||||
&__inner {
|
||||
grid-column: 2 / span calc(var(--columns) - 2);
|
||||
|
||||
@include bp (sm) {
|
||||
grid-column: 3 / span calc(var(--columns) - 5);
|
||||
}
|
||||
}
|
||||
|
||||
strong {
|
||||
font-weight: 400;
|
||||
color: $color-secondary;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user