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 f8343b3 commit 37441eaCopy full SHA for 37441ea
flex/07-flex-layout-2/style.css
@@ -32,6 +32,7 @@ body {
32
body {
33
display: flex;
34
flex-direction: column;
35
+ flex: 1;
36
}
37
38
ul,
@@ -63,13 +64,25 @@ a {
63
64
min-width: 300px;
65
padding: 16px;
66
67
+
68
.cards {
69
70
flex-direction: row;
- flex: 0 1 auto;
- gap: 20px;
71
+ flex-wrap: wrap;
72
+ gap: 32px;
73
+ justify-content: space-around;
74
+ align-content: center;
75
+ padding: 32px;
76
77
78
.card {
79
min-width: 200px;
80
+ max-width: 300px;
81
+}
82
83
+.footer {
84
+ display: flex;
85
+ flex-direction: column-reverse;
86
+ justify-content: center;
87
+ align-items: center;
88
0 commit comments