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
34 lines
647 B
Plaintext
34 lines
647 B
Plaintext
@import '../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.list-selection {
|
|
display: flex;
|
|
margin-left: auto;
|
|
color: var(--theme-elevation-500);
|
|
gap: 0.5em;
|
|
align-items: center;
|
|
|
|
&__actions {
|
|
display: flex;
|
|
gap: calc(var(--base) * 0.5);
|
|
}
|
|
|
|
&__button {
|
|
color: var(--theme-elevation-800);
|
|
background: unset;
|
|
border: none;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
font-size: inherit;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
@include small-break {
|
|
margin-bottom: base(0.5);
|
|
}
|
|
}
|
|
}
|