mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-30 07:44:43 -05:00
25 lines
400 B
CSS
25 lines
400 B
CSS
.buildsContainer {
|
|
display: grid;
|
|
justify-content: center;
|
|
gap: var(--s-4) var(--s-3);
|
|
grid-template-columns: repeat(auto-fit, 240px);
|
|
}
|
|
|
|
.buildsButtons {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.buildsButtonsLink {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--s-2);
|
|
}
|
|
|
|
@container (width >= 480px) {
|
|
.buildsButtonsLink {
|
|
flex-direction: row;
|
|
}
|
|
}
|