Changed so companion can level up on its own (#879)

This commit is contained in:
WBHarry 2025-08-13 10:39:23 +02:00 committed by GitHub
parent 3d6a276bbc
commit 294055ad51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 216 additions and 40 deletions

View file

@ -185,9 +185,50 @@
}
}
.level-up-label {
font-size: 24px;
padding-top: 8px;
.level-div {
white-space: nowrap;
display: flex;
justify-content: end;
.label {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
.input-section {
display: flex;
align-items: center;
justify-content: space-between;
}
}
input {
width: 40px;
padding: 0;
text-align: center;
border: 0;
}
.level-button {
color: light-dark(@dark, @beige);
font-size: 18px;
line-height: 1;
min-height: unset;
height: min-content;
padding: 4px;
font-family: 'Cinzel', serif;
margin: 0;
font-weight: normal;
border-color: light-dark(@dark-blue, @golden);
background-color: light-dark(transparent, @deep-black);
&:hover {
background-image: none;
background-color: var(--color-warm-2);
filter: drop-shadow(0 0 3px lightgray);
}
}
}
}