mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 05:07:36 -05:00
* Initial * CSS lint * Test CI * Add 1v1, 2v2, and 3v3 Tags (#1771) * Initial * CSS lint * Test CI * Rename step --------- Co-authored-by: xi <104683822+ximk@users.noreply.github.com>
43 lines
757 B
CSS
43 lines
757 B
CSS
.builds__top-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.builds__category {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: var(--s-3);
|
|
border-radius: var(--rounded);
|
|
background-color: var(--bg-lighter);
|
|
font-size: var(--fonts-sm);
|
|
font-weight: 600;
|
|
gap: var(--s-4);
|
|
}
|
|
|
|
.builds__category__header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2-5);
|
|
}
|
|
|
|
.builds__category__weapons {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: var(--s-3);
|
|
}
|
|
|
|
.builds__category__weapon {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--text);
|
|
font-size: var(--fonts-xs);
|
|
font-weight: var(--body);
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.builds__category__weapon__img {
|
|
border-radius: var(--rounded);
|
|
background-color: var(--bg-darker);
|
|
}
|