Spaces:
Paused
Paused
Commit
·
2d9189f
1
Parent(s):
58773f4
scrolling
Browse files
streaming-react-app/src/StreamingInterface.css
CHANGED
@@ -1,8 +1,17 @@
|
|
1 |
-
|
2 |
display: flex;
|
3 |
flex-direction: column;
|
4 |
justify-content: center;
|
5 |
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
}
|
7 |
|
8 |
.main-container-sra {
|
|
|
1 |
+
/*.app-wrapper-sra {
|
2 |
display: flex;
|
3 |
flex-direction: column;
|
4 |
justify-content: center;
|
5 |
align-items: center;
|
6 |
+
}*/
|
7 |
+
|
8 |
+
.app-wrapper-sra {
|
9 |
+
display: flex;
|
10 |
+
flex-direction: column;
|
11 |
+
justify-content: flex-start; /* Align to top for scrolling */
|
12 |
+
align-items: center;
|
13 |
+
height: 100vh; /* Ensure it takes the full viewport height */
|
14 |
+
overflow-y: auto; /* Enable scrolling if content exceeds height */
|
15 |
}
|
16 |
|
17 |
.main-container-sra {
|