frontend: refactor $mobileThreshold and container media queries
This commit is contained in:
parent
04f19f5a28
commit
f16d63c74f
@ -28,4 +28,4 @@ $errorText: darken($error, 30%);
|
|||||||
$errorColor: desaturate($errorText, 50%);
|
$errorColor: desaturate($errorText, 50%);
|
||||||
|
|
||||||
// Responsivity
|
// Responsivity
|
||||||
$menuLayoutSwitchTreshold: 700px;
|
$mobileThreshold: 632px;
|
||||||
|
@ -183,7 +183,7 @@ body > header {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: $menuLayoutSwitchTreshold) {
|
@media (max-width: $mobileThreshold) {
|
||||||
flex-direction: row-reverse;
|
flex-direction: row-reverse;
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
@ -246,7 +246,7 @@ body > header {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: $menuLayoutSwitchTreshold) {
|
@media (min-width: $mobileThreshold) {
|
||||||
nav ul li {
|
nav ul li {
|
||||||
a, button, .button {
|
a, button, .button {
|
||||||
@include tip;
|
@include tip;
|
||||||
@ -274,7 +274,7 @@ footer {
|
|||||||
|
|
||||||
main {
|
main {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
padding: 8px;
|
padding: 8px 0;
|
||||||
|
|
||||||
button, .button {
|
button, .button {
|
||||||
@include tip;
|
@include tip;
|
||||||
@ -649,10 +649,22 @@ button, .button {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
@mixin container {
|
||||||
|
width: $mobileThreshold;
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
max-width: 632px;
|
|
||||||
|
@media (min-width: $mobileThreshold) {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: $mobileThreshold) {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
@include container;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
|
Loading…
Reference in New Issue
Block a user