mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-27 05:38:09 -05:00
28 lines
458 B
CSS
28 lines
458 B
CSS
.pool {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: var(--s-3);
|
|
min-height: 50px;
|
|
}
|
|
|
|
.clickableItem {
|
|
min-height: 50px;
|
|
padding: var(--s-0-5);
|
|
margin: calc(-1 * var(--s-0-5));
|
|
border: none;
|
|
border-radius: var(--radius-field);
|
|
background: transparent;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s;
|
|
|
|
&:hover:not(:disabled),
|
|
&:focus-visible {
|
|
background-color: var(--color-bg-high);
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|