Small fix for the font size on mobile

This commit is contained in:
Fabio Manganiello 2019-07-28 23:32:52 +02:00
parent da46028df4
commit 1ca7feb506
2 changed files with 8 additions and 1 deletions

View File

@ -82,6 +82,12 @@ $widths: (
}
}
@media (min-width: 720px) and (orientation:portrait) {
body {
font-size: $default-font-size-vertial;
}
}
.vertical-center {
display: flex;
align-items: center;

View File

@ -7,7 +7,8 @@ $default-bg-5: #f8f8f8 !default;
$default-fg: black !default;
$default-fg-2: #333333 !default;
$default-fg-3: #888888 !default;
$default-font-size: 1.5rem !default;
$default-font-size: 15px !default;
$default-font-size-vertial: 25px !default;
$default-shadow: 2px 2px 2px #ccc !default;
$default-hover-fg: #35b870 !default;
$default-hover-fg-2: #38cf80 !default;