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
39 lines
629 B
Plaintext
39 lines
629 B
Plaintext
@import '../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.sort-complex {
|
|
background: var(--theme-elevation-100);
|
|
padding: base(0.5);
|
|
display: flex;
|
|
|
|
&__wrap {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&__select {
|
|
width: 50%;
|
|
margin-bottom: base(0.5);
|
|
padding: 0 base(0.5);
|
|
flex-grow: 1;
|
|
}
|
|
|
|
&__label {
|
|
color: var(--theme-elevation-400);
|
|
margin: base(0.5) 0;
|
|
}
|
|
|
|
@include mid-break {
|
|
&__wrap {
|
|
display: block;
|
|
}
|
|
|
|
&__select {
|
|
margin: 0 0 base(0.5);
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|