asi-calculator/components/FormAmount.module.css

24 lines
456 B
CSS
Raw Normal View History

2024-03-29 22:54:07 +01:00
.form {
display: inline-block;
}
.input {
all: unset;
width: auto;
padding-left: 0.2rem;
padding-right: 0.2rem;
text-align: center;
background-color: rgba(var(--foreground-rgb), 0.15);
border-radius: var(--border-radius);
}
.input:hover {
background-color: rgba(var(--foreground-rgb), 0.2);
}
.input:focus-within {
outline: none;
background-color: rgba(var(--foreground-rgb), 0.3);
color: rgb(var(--foreground-rgb-highlight));
}