Spaces:
Running
Running
Update templates/index.html
Browse files- templates/index.html +3 -4
templates/index.html
CHANGED
@@ -26,7 +26,7 @@
|
|
26 |
|
27 |
html {
|
28 |
/* Set a larger base font size for mobile readability */
|
29 |
-
font-size: 1.
|
30 |
}
|
31 |
|
32 |
body {
|
@@ -50,7 +50,6 @@ body {
|
|
50 |
border-radius: 0;
|
51 |
box-shadow: none;
|
52 |
box-sizing: border-box;
|
53 |
-
display: flex;
|
54 |
flex-direction: column;
|
55 |
}
|
56 |
|
@@ -207,7 +206,7 @@ button {
|
|
207 |
/* --- 2. Desktop Overrides --- */
|
208 |
/* These styles apply ONLY when screen width is 768px or more. */
|
209 |
|
210 |
-
@media (
|
211 |
html {
|
212 |
/* Reset to a standard desktop font size */
|
213 |
font-size: 1em;
|
@@ -228,7 +227,7 @@ button {
|
|
228 |
}
|
229 |
|
230 |
#chat {
|
231 |
-
max-width:
|
232 |
height: calc(100vh - 4rem); /* Fill most of the screen but not all */
|
233 |
max-height: 900px; /* Set a max-height */
|
234 |
}
|
|
|
26 |
|
27 |
html {
|
28 |
/* Set a larger base font size for mobile readability */
|
29 |
+
font-size: 1.0em;
|
30 |
}
|
31 |
|
32 |
body {
|
|
|
50 |
border-radius: 0;
|
51 |
box-shadow: none;
|
52 |
box-sizing: border-box;
|
|
|
53 |
flex-direction: column;
|
54 |
}
|
55 |
|
|
|
206 |
/* --- 2. Desktop Overrides --- */
|
207 |
/* These styles apply ONLY when screen width is 768px or more. */
|
208 |
|
209 |
+
@media (orientation: landscape) {
|
210 |
html {
|
211 |
/* Reset to a standard desktop font size */
|
212 |
font-size: 1em;
|
|
|
227 |
}
|
228 |
|
229 |
#chat {
|
230 |
+
max-width: 80%;
|
231 |
height: calc(100vh - 4rem); /* Fill most of the screen but not all */
|
232 |
max-height: 900px; /* Set a max-height */
|
233 |
}
|