Height Fix
Browse files
app.css
CHANGED
|
@@ -13,9 +13,14 @@ html {
|
|
| 13 |
scroll-behavior: smooth;
|
| 14 |
}
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
#main-row {
|
| 17 |
-
height:
|
| 18 |
-
max-height:
|
| 19 |
}
|
| 20 |
|
| 21 |
button[aria-label="Clear"] {
|
|
|
|
| 13 |
scroll-behavior: smooth;
|
| 14 |
}
|
| 15 |
|
| 16 |
+
html, body {
|
| 17 |
+
height: 100%;
|
| 18 |
+
overflow: hidden;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
#main-row {
|
| 22 |
+
height: 100%;
|
| 23 |
+
max-height: 100%;
|
| 24 |
}
|
| 25 |
|
| 26 |
button[aria-label="Clear"] {
|