Make font responsive bigger for most mobile devices at 320px

This commit is contained in:
2018-03-24 05:47:27 +05:30
parent 55fc16788f
commit e59b55a53a
+8 -2
View File
@@ -32,11 +32,17 @@
@media screen and (min-width: 321px) and (max-width: 425px) { @media screen and (min-width: 321px) and (max-width: 425px) {
.App { .App {
font-size: 0.45em; font-size: 0.5em;
} }
} }
@media screen and (max-width: 320px) { @media screen and (min-width: 241px) and (max-width: 320px) {
.App {
font-size: 0.4em;
}
}
@media screen and (max-width: 240px) {
.App { .App {
font-size: 0.3em; font-size: 0.3em;
} }