requested changes

This commit is contained in:
moliloo 2025-07-21 20:53:05 -03:00
parent b731755cf4
commit 6930dc51ad
8 changed files with 85 additions and 94 deletions

View file

@ -13,6 +13,7 @@
display: flex;
flex-direction: column;
gap: 12px;
max-width: 550px;
.dices-section {
display: flex;

View file

@ -15,6 +15,10 @@
color: light-dark(@dark-blue, @golden);
border: 1px solid light-dark(@dark, @beige);
&::placeholder {
color: light-dark(@dark-40, @beige-50);
}
&:hover[type='text'],
&:hover[type='number'],
&:focus[type='text'],
@ -48,6 +52,24 @@
}
}
input[type='range'] {
&::-webkit-slider-runnable-track {
background: light-dark(@dark-blue-40, @golden-40);
}
&::-moz-range-track {
background: light-dark(@dark-blue-40, @golden-40);
}
&::-webkit-slider-thumb {
background: light-dark(@dark-blue, @golden);
border: none;
border-radius: 50%;
&:hover {
box-shadow: 0 0 8px light-dark(@dark-blue, @golden);
}
}
}
button {
background: light-dark(transparent, @golden);
border: 1px solid light-dark(@dark-blue, @dark-blue);
@ -296,6 +318,31 @@
}
}
.scalable-input {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
.form-group {
width: fit-content;
.nest-inputs {
width: fit-content;
}
}
label {
font-family: @font-body;
font-size: 14px;
font-weight: 400;
&.modifier-label {
width: 6ch;
text-align: end;
}
}
}
&:has(.list-w-img) {
gap: 0;
}