Standard smallest screen is 600px (#520)
For devices that have a screen size so small they have to use the `max-width` property in CSS, the standard of a screen-size that has to be used here is `phones 600px and smaller`, not `900px`, which would have to use the `min-width` property instead, that would mean a widescreen size, because `min-width` means `a screen size of 900px, or more`, including desktops.
This commit is contained in:
parent
d7de09ab81
commit
de296b633f
@ -88,7 +88,7 @@ header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Only enable label animations on normal screens
|
// Only enable label animations on normal screens
|
||||||
@media screen and (min-width: 900px) {
|
@media screen and (min-width: 600px) {
|
||||||
header nav a {
|
header nav a {
|
||||||
i {
|
i {
|
||||||
transition: all 0.2s ease;
|
transition: all 0.2s ease;
|
||||||
|
@ -18,7 +18,7 @@ html {
|
|||||||
@import 'forms';
|
@import 'forms';
|
||||||
|
|
||||||
/// Small screens
|
/// Small screens
|
||||||
@media screen and (max-width: 900px) {
|
@media screen and (max-width: 600px) {
|
||||||
@keyframes menuOpening {
|
@keyframes menuOpening {
|
||||||
from {
|
from {
|
||||||
transform: scaleX(0);
|
transform: scaleX(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user