Skip to content

Commit

Permalink
fix carousel folding (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipslezaklab authored Jan 5, 2024
1 parent 614efcb commit f0f99c0
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions src/pages/client/pages/CarouselPage/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
text-align: center;
width: 100%;
font-weight: 400;
height: 72px;
min-height: 72px;
}

strong,
Expand All @@ -46,9 +46,12 @@
display: grid;
grid-template-rows: auto auto;
grid-template-columns: 1fr;
align-items: center;
justify-items: center;
row-gap: 20px;
column-gap: 10px;

@include media-breakpoint-up(xl) {
@include media-breakpoint-up(xxl) {
grid-template-rows: auto;
grid-template-columns: 1fr 1fr;
column-gap: 40px;
Expand Down Expand Up @@ -100,7 +103,8 @@

#welcome-slide {
h2 {
margin-bottom: 40px;
padding-bottom: 40px;
display: block;
}

& > .row {
Expand Down Expand Up @@ -167,11 +171,20 @@
}
}

#factor-slide,
#security-slide,
#instances-slide,
#support-slide,
#welcome-slide {
min-height: 750px;
}

#factor-slide,
#security-slide,
#instances-slide,
#support-slide {
justify-content: space-between;
row-gap: 25px;
}

#support-slide {
Expand Down

0 comments on commit f0f99c0

Please sign in to comment.