Merge branch 'main' into feature/chat-message-styles

This commit is contained in:
WBHarry 2025-07-28 20:54:02 +02:00
commit 094e0740dd
270 changed files with 13798 additions and 982 deletions

View file

@ -443,6 +443,10 @@
}
.field-section {
display: flex;
flex-direction: column;
gap: 10px;
.split-section {
display: grid;
grid-template-columns: 1fr 1fr;
@ -455,9 +459,18 @@
grid-template-columns: 1fr 1fr;
gap: 10px;
&.full-width {
grid-template-columns: 1fr 1fr 1fr 1fr;
select {
grid-column: span 3;
}
}
label {
align-self: center;
text-align: center;
white-space: nowrap;
}
}
}

View file

@ -110,6 +110,10 @@
align-items: center;
justify-content: end;
gap: 8px;
.unequipped {
opacity: .5;
}
}
}

View file

@ -19,7 +19,7 @@
flex-direction: column;
align-items: center;
gap: 5px;
margin-top: 36px;
margin-top: var(--header-height);
text-align: center;
width: 80%;

View file

@ -15,6 +15,9 @@
// Window header styles
.window-header {
position: absolute;
width: 100%;
height: var(--header-height);
background: transparent;
border-bottom: none;
justify-content: end;
@ -41,11 +44,9 @@
.window-content {
padding: 0;
position: relative;
top: -36px;
min-height: -webkit-fill-available;
transition: opacity 0.3s ease;
padding-bottom: 20px;
margin-bottom: -36px;
.tab {
padding: 0 10px;