font size media queries fixed

This commit is contained in:
NikolaBorislavovHristov 2019-08-06 15:07:16 +03:00
parent f94ef45be5
commit 419aee35ac

View file

@ -100,26 +100,26 @@ html {
}
}
@media only screen and (max-width: @medium) {
@media only screen and (min-width: @xxlarge) {
html {
font-size: 14px;
font-size: 18px;
}
}
@media only screen and (min-width: @medium) and (max-width: @large) {
html {
font-size: 15px;
}
}
@media only screen and (min-width: @large) and (max-width: @xxlarge) {
@media only screen and (max-width: @xxlarge) {
html {
font-size: 16px;
}
}
@media only screen and (min-width: @xxlarge) {
@media only screen and (max-width: @large) {
html {
font-size: 18px;
font-size: 15px;
}
}
@media only screen and (max-width: @medium) {
html {
font-size: 14px;
}
}