Charles De Dampierre
commited on
Commit
•
6c88a26
1
Parent(s):
a3979ed
check size
Browse files- src/App.css +20 -0
src/App.css
CHANGED
@@ -36,4 +36,24 @@
|
|
36 |
to {
|
37 |
transform: rotate(360deg);
|
38 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
|
|
36 |
to {
|
37 |
transform: rotate(360deg);
|
38 |
}
|
39 |
+
}
|
40 |
+
|
41 |
+
|
42 |
+
.scatter-plot-and-text-container {
|
43 |
+
display: flex;
|
44 |
+
flex-direction: row;
|
45 |
+
justify-content: space-between;
|
46 |
+
}
|
47 |
+
|
48 |
+
.scatter-plot-container {
|
49 |
+
flex: 1;
|
50 |
+
/* This makes it flexible and takes remaining space */
|
51 |
+
/* Add some margin to push it down slightly */
|
52 |
+
/* Add other styling for scatter-plot-container as needed */
|
53 |
+
}
|
54 |
+
|
55 |
+
.text-container {
|
56 |
+
flex: 1;
|
57 |
+
/* This makes it flexible and takes remaining space */
|
58 |
+
/* Add other styling for text-container as needed */
|
59 |
}
|