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
806 B
Plaintext
40 lines
806 B
Plaintext
@import '../../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.multi-value {
|
|
&.rs__multi-value {
|
|
display: flex;
|
|
padding: 0;
|
|
border: 1px solid var(--theme-border-color);
|
|
border-radius: var(--style-radius-s);
|
|
line-height: calc(#{$baseline} - 2px);
|
|
margin: base(0.25) base(0.5) base(0.25) 0;
|
|
transition: border 0.2s cubic-bezier(0.2, 0, 0, 1);
|
|
|
|
&:hover {
|
|
border: 1px solid var(--theme-elevation-250);
|
|
}
|
|
}
|
|
|
|
&--is-dragging {
|
|
z-index: 2;
|
|
}
|
|
}
|
|
|
|
html[data-theme='light'] {
|
|
.multi-value {
|
|
&.rs__multi-value {
|
|
background: var(--theme-elevation-50);
|
|
}
|
|
}
|
|
}
|
|
|
|
html[data-theme='dark'] {
|
|
.multi-value {
|
|
&.rs__multi-value {
|
|
background: var(--theme-elevation-50);
|
|
}
|
|
}
|
|
}
|
|
}
|