This commit is contained in:
WBHarry 2025-07-11 22:49:03 +02:00
parent b6195127fe
commit 0c742eb91b
5 changed files with 200 additions and 131 deletions

View file

@ -21,10 +21,19 @@
}
}
.item-label-wrapper {
display: grid;
grid-template-columns: 1fr 60px;
}
.item-label {
font-family: @font-body;
align-self: center;
&.fullWidth {
grid-column: span 2;
}
.item-name {
font-size: 14px;
}
@ -58,6 +67,31 @@
}
}
.item-tokens {
display: flex;
flex-direction: column;
gap: 4px;
.item-token {
display: flex;
align-items: center;
gap: 4px;
i {
flex: none;
font-size: 14px;
}
input {
flex: 1;
&::-webkit-outer-spin-button {
opacity: 1;
}
}
}
}
.controls {
display: flex;
align-items: center;