app/assets/sass/views/_landingpage.scss: change from grid system to flexbox.
This commit is contained in:
parent
6fe1d3019c
commit
e432b3ab87
1 changed files with 5 additions and 3 deletions
|
|
@ -11,10 +11,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.steps {
|
.steps {
|
||||||
@extend .row;
|
display: flex;
|
||||||
|
column-gap: 2rem;
|
||||||
|
|
||||||
.steps-img {
|
.steps-img {
|
||||||
@extend .center-block;
|
|
||||||
width: 270px;
|
width: 270px;
|
||||||
height: 220px;
|
height: 220px;
|
||||||
}
|
}
|
||||||
|
|
@ -32,7 +32,9 @@
|
||||||
.steps-step1,
|
.steps-step1,
|
||||||
.steps-step2,
|
.steps-step2,
|
||||||
.steps-step3 {
|
.steps-step3 {
|
||||||
@include make-md-column(4);
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
align-items: center;
|
||||||
@extend .text-center;
|
@extend .text-center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue