Files
feishin/src/renderer/features/shared/components/table-config.module.css
T
2025-11-29 19:30:50 -08:00

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;
}