mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
27 lines
540 B
CSS
27 lines
540 B
CSS
.group {
|
|
overflow: hidden;
|
|
border: 1px solid var(--theme-colors-border);
|
|
border-radius: var(--theme-radius-md);
|
|
}
|
|
|
|
.number-input {
|
|
width: 140px;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
gap: var(--theme-spacing-md);
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding: var(--theme-spacing-xs);
|
|
border-radius: var(--theme-radius-sm);
|
|
transition: outline 0.2s ease;
|
|
}
|
|
|
|
.item.matched {
|
|
outline: 2px solid var(--theme-colors-primary);
|
|
outline-offset: 2px;
|
|
}
|