5f8b358fd4
- Refactored Homepage with customisable Hero Section - New Homepage Section to add content on Homepage as cards or using Custom HTML - Products page at "/all-products" with customisable filters - Item Configure dialog to find an Item Variant filtered by attribute values - Contact Us dialog on Item page - Customisable Item page content using the Website Content field
9 lines
205 B
CSS
9 lines
205 B
CSS
/* csslint ignore:start */
|
|
{% if homepage.hero_image %}
|
|
.hero-image {
|
|
background-image: url("{{ homepage.hero_image }}");
|
|
background-size: cover;
|
|
padding: 10rem 0;
|
|
}
|
|
{% endif %}
|
|
/* csslint ignore:end */ |