We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe6e84b commit fc383cfCopy full SHA for fc383cf
src/pages/wiki/index.astro
@@ -101,7 +101,7 @@ if (!contributors) {
101
Contribute today!
102
</ExternalLink>
103
</p>
104
- <div class="flex">
+ <div class="grid">
105
{
106
contributors
107
.filter((user) => !filteredContributors.includes(user.id))
@@ -192,11 +192,11 @@ if (!contributors) {
192
}
193
194
#contributors {
195
- div.flex {
196
- display: flex;
+ div.grid {
+ display: grid;
197
+ grid-template-columns: repeat(auto-fill, minmax(5em, 1fr));
198
justify-content: space-evenly;
199
align-items: center;
- flex-wrap: wrap;
200
gap: 1em;
201
margin: 0px 1em;
202
@@ -211,7 +211,7 @@ if (!contributors) {
211
212
div.contributor {
213
height: auto;
214
- width: 5.5em;
+ width: 100%;
215
216
a,
217
img {
0 commit comments