Archived
1
0
Fork 0

app/assets/sass/views/_landingpage.scss: change from grid system to flexbox.

This commit is contained in:
Henrik Hautakoski 2022-07-31 19:28:16 +02:00
parent 6fe1d3019c
commit e432b3ab87

View file

@ -11,10 +11,10 @@
}
.steps {
@extend .row;
display: flex;
column-gap: 2rem;
.steps-img {
@extend .center-block;
width: 270px;
height: 220px;
}
@ -32,7 +32,9 @@
.steps-step1,
.steps-step2,
.steps-step3 {
@include make-md-column(4);
display: flex;
flex-flow: column;
align-items: center;
@extend .text-center;
}
}