diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-07-09 14:30:26 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:20:13 +0100 |
commit | e3ae99c7ce5c2cf9b8eac9c270f341b24de667bf (patch) | |
tree | 621a6f276875d9e8d8a889805b80bb45f3bf86eb | |
parent | 91d9705ca8e9e3fbe9a28804a89c01278db2966d (diff) |
BUGFIX Correct wrong size on scss
-rw-r--r-- | src/styles/main.scss | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss index 660fb92..6c3ed5a 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -128,7 +128,8 @@ body { &.ac, &.auto { .label { - font-size: 5rem; + font-weight: bold; + font-size: 2.5rem; text-align: center; margin-top: -50%; } @@ -189,7 +190,7 @@ body { &.temperatures { .temperatures-container { width: 100%; - height: 480px; + height: 240px; overflow-y: scroll; .temperature { @@ -199,7 +200,8 @@ body { &[enabled='false'] { color: map-get($colors, grey); } - font-size: 10rem; + font-size: 5rem; + font-weight: bold; text-align: center; width: 100%; } |