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
42 lines
786 B
Plaintext
42 lines
786 B
Plaintext
@import '../../../scss/styles';
|
|
|
|
@layer payload-default {
|
|
.query-preset-bar {
|
|
display: flex;
|
|
gap: base(0.5);
|
|
justify-content: space-between;
|
|
background-color: var(--theme-elevation-50);
|
|
border-radius: var(--style-radius-m);
|
|
padding: base(0.5);
|
|
|
|
&__menu {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
&__create-new-preset {
|
|
height: 100%;
|
|
padding: 0 3px;
|
|
background: transparent;
|
|
box-shadow: inset 0 0 0 1px var(--theme-elevation-150);
|
|
|
|
&:hover {
|
|
background: transparent;
|
|
}
|
|
}
|
|
|
|
&__menu-items {
|
|
overflow: auto;
|
|
display: flex;
|
|
gap: base(0.5);
|
|
|
|
button {
|
|
color: var(--theme-elevation-500);
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|