Landing page: left-align icon on small screen sizes

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2020-05-19 10:49:56 +02:00
parent 9d446cfd44
commit ba7413baff
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 10 additions and 4 deletions

View File

@ -128,10 +128,16 @@ body#landing {
@include lg-width { background-size: auto 60px }
.title {
margin-top: 50px;
@include sm-width { margin-top: 60px }
@include md-width { margin-top: 72px }
@include lg-width { margin-top: 90px }
margin-top: 0;
margin-left: 60px;
@include sm-width { margin-left: 0; margin-top: 60px }
@include md-width { margin-left: 0; margin-top: 72px }
@include lg-width { margin-left: 0; margin-top: 90px }
}
p {
margin-left: 60px;
@include sm-width { margin-left: 0 }
}
}