feat: properly display GitHub repositories

This commit is contained in:
2023-05-05 00:40:46 +02:00
parent aa82e265c8
commit 08825d870b
6 changed files with 193 additions and 8 deletions

View File

@@ -0,0 +1,32 @@
each(range(5), {
.gap-@{value}rem {
gap: @value * 1rem;
}
});
.flex {
display: flex;
}
.flex-col {
.flex();
flex-direction: column;
}
.flex-row {
.flex();
flex-direction: row;
}
@flex-justifications: flex-start, flex-end, center, space-between, space-around,
space-evenly;
each(@flex-justifications, {
.@{value} {
.flex();
justify-content: @value;
}
});
.rounded-corners {
border-radius: 1rem;
}