Added a button to spend/restore uses of an action

This commit is contained in:
WBHarry 2025-08-06 17:37:14 +02:00
parent d186c62ee5
commit aef9828f86
7 changed files with 91 additions and 14 deletions

View file

@ -486,8 +486,43 @@
flex-wrap: wrap;
margin-top: 2px;
button {
white-space: nowrap;
.item-button {
display: flex;
border: 1px solid light-dark(#18162e, #18162e);
color: light-dark(#18162e, #18162e);
outline: none;
box-shadow: none;
border-radius: 6px;
button {
padding: 6px 6px 6px 10px;
border-radius: 3px 0px 0px 3px;
color: light-dark(@dark-blue, @dark-blue);
white-space: nowrap;
border: 0;
font-family: @font-body;
&:hover {
color: light-dark(@dark-blue, @golden);
}
&:last-child {
padding: 6px;
background: light-dark(@dark-blue-10, @golden-secondary);
border-radius: 0px 3px 3px 0px;
color: light-dark(@dark-blue, @dark-golden);
&:hover {
background: light-dark(@light-black, @dark-blue);
color: light-dark(@dark-blue, @golden-secondary);
}
}
}
.spacer {
border-right: 1px solid black;
content: '';
}
}
}
}