IOPaint/lama_cleaner/app/src/components/shared/NumberInput.scss

18 lines
297 B
SCSS
Raw Normal View History

2022-04-12 14:58:57 +02:00
.number-input {
all: unset;
flex: 1 0 auto;
border-radius: 0.5rem;
2022-06-12 07:14:17 +02:00
padding: 0 0.8rem;
2022-04-12 14:58:57 +02:00
outline: 1px solid var(--border-color);
2022-07-18 15:20:52 +02:00
height: 32px;
2022-09-15 16:21:27 +02:00
text-align: right;
2022-04-12 14:58:57 +02:00
&:focus-visible {
outline: 1px solid var(--yellow-accent);
}
2022-09-15 16:21:27 +02:00
&:disabled {
color: var(--border-color);
}
2022-04-12 14:58:57 +02:00
}