Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
28 lines
504 B
Plaintext
28 lines
504 B
Plaintext
@import '../../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.multi-value-label {
|
|
@extend %small;
|
|
display: flex;
|
|
align-items: center;
|
|
max-width: 150px;
|
|
color: currentColor;
|
|
padding: 0 base(0.4);
|
|
|
|
&__text {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
|
|
&--editable {
|
|
cursor: text;
|
|
outline: var(--accessibility-outline);
|
|
}
|
|
}
|
|
|
|
&:focus-visible {
|
|
outline: var(--accessibility-outline);
|
|
}
|
|
}
|
|
}
|