Don't change layout of static pages
This commit is contained in:
parent
ddba5d3b8c
commit
4c37f629bc
2 changed files with 6 additions and 6 deletions
|
@ -9,7 +9,7 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
@include single-column('screen and (max-width: 700px)') {
|
@media screen and (max-width: 700px) {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
@ -148,7 +148,7 @@
|
||||||
order: 1;
|
order: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include single-column('screen and (max-width: 480px)') {
|
@media screen and (max-width: 480px) {
|
||||||
.details {
|
.details {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
@ -230,7 +230,7 @@
|
||||||
color: lighten($ui-base-color, 10%);
|
color: lighten($ui-base-color, 10%);
|
||||||
}
|
}
|
||||||
|
|
||||||
@include single-column('screen and (max-width: 360px)') {
|
@media screen and (max-width: 360px) {
|
||||||
padding: 30px 20px;
|
padding: 30px 20px;
|
||||||
|
|
||||||
a,
|
a,
|
||||||
|
@ -258,7 +258,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
@include single-column('screen and (max-width: 700px)') {
|
@media screen and (max-width: 700px) {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
margin-top: 40px;
|
margin-top: 40px;
|
||||||
|
|
||||||
@include single-column('screen and (max-width: 700px)') {
|
@media screen and (max-width: 700px) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|
||||||
@include single-column('screen and (max-width: 360px)') {
|
@media screen and (max-width: 360px) {
|
||||||
margin: 30px auto;
|
margin: 30px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue