mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 21:34:28 -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>
30 lines
515 B
CSS
30 lines
515 B
CSS
.support__table {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
place-items: center;
|
|
font-size: var(--fonts-sm);
|
|
row-gap: var(--s-2);
|
|
}
|
|
|
|
.support__checkmark {
|
|
color: var(--theme-success);
|
|
width: 25px;
|
|
}
|
|
|
|
.support__popover {
|
|
display: inline;
|
|
margin-inline-start: var(--s-2);
|
|
}
|
|
|
|
.support__popover-trigger {
|
|
display: inline;
|
|
height: 1rem;
|
|
padding: 0;
|
|
border: none;
|
|
background-color: transparent;
|
|
color: var(--theme);
|
|
font-size: var(--fonts-md);
|
|
font-weight: var(--bold);
|
|
outline: initial;
|
|
}
|