mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-22 02:14:41 -05:00
25 lines
495 B
CSS
25 lines
495 B
CSS
.trigger {
|
|
border: var(--border-style-high);
|
|
border-radius: 100%;
|
|
background-color: transparent;
|
|
color: var(--color-text);
|
|
font-size: var(--font-md);
|
|
padding: var(--s-0-5);
|
|
width: var(--selector-size);
|
|
height: var(--selector-size);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
&:focus-visible {
|
|
outline: var(--focus-ring);
|
|
outline-offset: 1px;
|
|
}
|
|
}
|
|
|
|
.triggerTiny {
|
|
width: var(--selector-size-sm);
|
|
height: var(--selector-size-sm);
|
|
font-size: var(--font-xs);
|
|
}
|