Skip to content

Commit

Permalink
MODIFIED: small css adjustments as requested by Ronan
Browse files Browse the repository at this point in the history
  • Loading branch information
sd-ditoy committed Oct 18, 2023
1 parent a7c77d1 commit 1550d7b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/components/blocks/ResponsiveGallery.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="carousel-container">
<div class="container">
<h2 v-html="title" :data-slug="slugged"></h2>
<h2 v-if="title" v-html="title" :data-slug="slugged"></h2>
</div>
<div class="fullwidth-glider" ref="glider">
<div class="glide__track" data-glide-el="track">
Expand Down Expand Up @@ -286,16 +286,22 @@ export default {
.carousel-container {
display: block;
width: 100%;
overflow: hidden;
position: relative;
height: 100%;
padding: 0 0 var(--margin-80) 0;
margin-top: 80px;
margin-top: 0;
> div:first-child {
& > div.container {
margin-top: 80px;
display: flex;
justify-content: space-between;
margin-bottom: 42px;
}
& > .container:empty {
display: none;
}
}
@include breakpoint('sm') {
Expand Down

0 comments on commit 1550d7b

Please sign in to comment.