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
43 lines
784 B
Plaintext
43 lines
784 B
Plaintext
@import '../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.where-builder {
|
|
background: var(--theme-elevation-50);
|
|
padding: var(--base);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: calc(var(--base) / 2);
|
|
|
|
.btn {
|
|
margin: 0;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
&__no-filters {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: calc(var(--base) / 2);
|
|
}
|
|
|
|
&__or-filters,
|
|
&__and-filters {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: calc(var(--base) / 2);
|
|
|
|
li {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: calc(var(--base) / 2);
|
|
}
|
|
}
|
|
|
|
@include small-break {
|
|
padding: calc(var(--base) / 2);
|
|
}
|
|
}
|
|
}
|