This commit is contained in:
WBHarry 2026-01-10 01:58:17 +01:00 committed by GitHub
commit 4c1dbee374
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 269 additions and 40 deletions

View file

@ -67,6 +67,35 @@
}
}
.dialog-selection-container {
display: flex;
gap: 10px;
flex-wrap: wrap;
.selection-chip {
display: flex;
align-items: center;
border-radius: 5px;
width: fit-content;
gap: 5px;
cursor: pointer;
padding: 5px;
background: light-dark(@dark-blue-10, @golden-10);
color: light-dark(@dark-blue, @golden);
.label {
font-style: normal;
font-weight: 400;
font-size: var(--font-size-14);
line-height: 17px;
}
&.selected {
background: light-dark(@dark-blue-40, @golden-40);
}
}
}
.standard-form {
font-family: @font-body;
}