Improved the Reaction toggle in dice rolls (#1643)

This commit is contained in:
WBHarry 2026-02-09 01:02:59 +01:00 committed by GitHub
parent 5413730108
commit c7431d16a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 33 additions and 13 deletions

View file

@ -17,7 +17,9 @@
.dialog-header-inner {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 2px;
}
h1 {
@ -45,6 +47,29 @@
}
}
.reaction-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);
}
}
.tag-team-controller {
display: flex;
align-items: center;