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
40 lines
735 B
Plaintext
40 lines
735 B
Plaintext
@import '../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.group-by-builder {
|
|
background: var(--theme-elevation-50);
|
|
padding: var(--base);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: calc(var(--base) / 2);
|
|
|
|
&__header {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
&__clear-button {
|
|
background: transparent;
|
|
border: none;
|
|
color: var(--theme-elevation-500);
|
|
line-height: inherit;
|
|
cursor: pointer;
|
|
font-size: inherit;
|
|
padding: 0;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&__inputs {
|
|
width: 100%;
|
|
display: flex;
|
|
gap: base(1);
|
|
|
|
& > * {
|
|
flex-grow: 1;
|
|
width: 50%;
|
|
}
|
|
}
|
|
}
|
|
}
|