aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2021-09-13 12:57:58 -0700
committerGitHub <noreply@github.com>2021-09-13 12:57:58 -0700
commit33d60aa76a975f26733e45f7652a03088f32c812 (patch)
tree01320ecdd121fdaff685eff16b96a864170cfa26
parentafe6d34ced84cb22868e26466f5e6928c5cd0d06 (diff)
parent6c834c24b6602a5cede127c264adc7a4a4505171 (diff)
downloadhomer-33d60aa76a975f26733e45f7652a03088f32c812.tar.gz
homer-33d60aa76a975f26733e45f7652a03088f32c812.tar.zst
homer-33d60aa76a975f26733e45f7652a03088f32c812.zip
Merge pull request #271 from Sharknoon/main
Fixed the height of the Dashboard Title in case of a long string
-rw-r--r--src/assets/app.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/assets/app.scss b/src/assets/app.scss
index bdbe441..f2dfb37 100644
--- a/src/assets/app.scss
+++ b/src/assets/app.scss
@@ -106,7 +106,7 @@ body {
106 } 106 }
107 107
108 .first-line { 108 .first-line {
109 height: 100px; 109 min-height: 100px;
110 vertical-align: center; 110 vertical-align: center;
111 background-color: var(--highlight-primary); 111 background-color: var(--highlight-primary);
112 112
@@ -121,7 +121,7 @@ body {
121 } 121 }
122 122
123 .container { 123 .container {
124 height: 80px; 124 min-height: 80px;
125 padding: 10px 0; 125 padding: 10px 0;
126 } 126 }
127 127