We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 243f7ad commit 85ebe64Copy full SHA for 85ebe64
1 file changed
static/css/homepage.css
@@ -27,18 +27,36 @@
27
}
28
29
.h2columns {
30
- display: grid;
31
- grid-template-columns: 50% 50%;
+ display: flex;
+ flex-wrap: wrap;
32
gap: 1.5rem;
33
margin-top: 0;
34
+ padding: 0 1rem;
35
justify-content: center;
36
37
38
+.h2columns > div {
39
+ flex: 1 1 45%;
40
+ min-width: 300px;
41
+}
42
+
43
.h3columns {
- grid-template-columns: 33% 33% 33%;
44
45
46
gap: 1rem;
47
48
49
+ justify-content: center;
50
51
52
+.h3columns > div {
53
+ flex: 1 1 0;
54
55
56
+@media (max-width: 600px) {
57
+ .h3columns > div {
58
+ flex: 1 1 100%;
59
+ }
60
61
62
.hfeature {
0 commit comments