Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -65,12 +65,14 @@ body {
|
|
65 |
.currency-box {
|
66 |
margin: 10px 0;
|
67 |
width: 100%;
|
|
|
|
|
|
|
68 |
}
|
69 |
|
70 |
.currency-box label {
|
71 |
font-weight: bold;
|
72 |
font-size: 16px;
|
73 |
-
display: block;
|
74 |
margin-bottom: 5px;
|
75 |
}
|
76 |
|
@@ -86,11 +88,11 @@ body {
|
|
86 |
|
87 |
.currency-select {
|
88 |
display: flex;
|
89 |
-
align-items: center;
|
90 |
justify-content: space-between;
|
|
|
91 |
width: 100%;
|
92 |
-
flex-wrap: wrap; /* Allows wrap on small screens */
|
93 |
margin: 20px 0;
|
|
|
94 |
}
|
95 |
|
96 |
.currency-group {
|
@@ -171,6 +173,7 @@ body {
|
|
171 |
justify-content: center;
|
172 |
margin-top: 20px;
|
173 |
flex-wrap: wrap;
|
|
|
174 |
}
|
175 |
|
176 |
.step {
|
@@ -200,13 +203,18 @@ body {
|
|
200 |
}
|
201 |
|
202 |
@media screen and (max-width: 768px) {
|
203 |
-
.
|
204 |
flex-direction: column;
|
|
|
205 |
}
|
206 |
|
207 |
-
.currency-
|
|
|
|
|
|
|
|
|
|
|
208 |
flex-direction: column;
|
209 |
-
align-items: center;
|
210 |
}
|
211 |
|
212 |
.currency-box input,
|
|
|
65 |
.currency-box {
|
66 |
margin: 10px 0;
|
67 |
width: 100%;
|
68 |
+
display: flex;
|
69 |
+
flex-direction: column;
|
70 |
+
align-items: flex-start; /* Align left */
|
71 |
}
|
72 |
|
73 |
.currency-box label {
|
74 |
font-weight: bold;
|
75 |
font-size: 16px;
|
|
|
76 |
margin-bottom: 5px;
|
77 |
}
|
78 |
|
|
|
88 |
|
89 |
.currency-select {
|
90 |
display: flex;
|
|
|
91 |
justify-content: space-between;
|
92 |
+
align-items: flex-start;
|
93 |
width: 100%;
|
|
|
94 |
margin: 20px 0;
|
95 |
+
flex-wrap: wrap;
|
96 |
}
|
97 |
|
98 |
.currency-group {
|
|
|
173 |
justify-content: center;
|
174 |
margin-top: 20px;
|
175 |
flex-wrap: wrap;
|
176 |
+
gap: 20px;
|
177 |
}
|
178 |
|
179 |
.step {
|
|
|
203 |
}
|
204 |
|
205 |
@media screen and (max-width: 768px) {
|
206 |
+
.currency-select {
|
207 |
flex-direction: column;
|
208 |
+
align-items: center;
|
209 |
}
|
210 |
|
211 |
+
.currency-group {
|
212 |
+
width: 100%;
|
213 |
+
max-width: 200px;
|
214 |
+
}
|
215 |
+
|
216 |
+
.steps {
|
217 |
flex-direction: column;
|
|
|
218 |
}
|
219 |
|
220 |
.currency-box input,
|