| ... |
... |
@@ -190,12 +190,6 @@ |
| 190 |
190 |
display: flex; |
| 191 |
191 |
flex-wrap: wrap; |
| 192 |
192 |
gap: 24px; |
| 193 |
|
- |
| 194 |
|
- /* center the whole block under the heading */ |
| 195 |
|
- max-width: 960px; // tweak 900–1040px to taste |
| 196 |
|
- margin-left: auto; |
| 197 |
|
- margin-right: auto; |
| 198 |
|
- justify-content: center; |
| 199 |
199 |
} |
| 200 |
200 |
|
| 201 |
201 |
.service { |
| ... |
... |
@@ -247,9 +247,11 @@ |
| 247 |
247 |
} |
| 248 |
248 |
} |
| 249 |
249 |
|
| 250 |
|
- /* Last item when count is odd: full-width on its own row */ |
|
244 |
+ /* Center the last item when odd: |
|
245 |
+ auto margins in a flex row push it to the middle */ |
| 251 |
251 |
.service-center { |
| 252 |
|
- flex: 0 1 100%; |
|
247 |
+ margin-left: auto; |
|
248 |
+ margin-right: auto; |
| 253 |
253 |
} |
| 254 |
254 |
|
| 255 |
255 |
/* Mobile: 1 per row */ |
| ... |
... |
@@ -256,13 +256,14 @@ |
| 256 |
256 |
@media (max-width: 767px) { |
| 257 |
257 |
.services-grid { |
| 258 |
258 |
gap: 16px; |
| 259 |
|
- max-width: 100%; |
| 260 |
260 |
} |
| 261 |
|
- |
| 262 |
|
- .service, |
| 263 |
|
- .service-center { |
|
256 |
+ .service { |
| 264 |
264 |
flex: 0 1 100%; |
| 265 |
265 |
} |
|
259 |
+ .service-center { |
|
260 |
+ margin-left: 0; |
|
261 |
+ margin-right: 0; |
|
262 |
+ } |
| 266 |
266 |
} |
| 267 |
267 |
} |
| 268 |
268 |
|