40 lines
583 B
SCSS
40 lines
583 B
SCSS
.root {
|
|
display: flex !important;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
|
|
:global(.custom-emoji) {
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
:global(.statusSparkles) {
|
|
color: var(--accent-color);
|
|
:global(.selected) & {
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.statusTransition {
|
|
height: 1.5em !important;
|
|
width: 1.5em !important;
|
|
}
|
|
}
|
|
|
|
.fullName {
|
|
font-size: 1em;
|
|
margin-bottom: 0;
|
|
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
|
|
&.canCopy {
|
|
pointer-events: all;
|
|
}
|
|
}
|
|
|
|
.statusTransitionSlide {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|