mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-19 13:52:12 +00:00
font size media queries fixed
This commit is contained in:
parent
f94ef45be5
commit
419aee35ac
1 changed files with 11 additions and 11 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue