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
608 B
Plaintext
40 lines
608 B
Plaintext
@import '../../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.popup-button {
|
|
height: 100%;
|
|
color: currentColor;
|
|
padding: 0;
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
font-family: inherit;
|
|
border: 0;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
|
|
&--background {
|
|
background: transparent;
|
|
}
|
|
|
|
&--size-xsmall {
|
|
padding: base(0.1);
|
|
}
|
|
|
|
&--size-small {
|
|
padding: base(0.2);
|
|
}
|
|
|
|
&--size-medium {
|
|
padding: base(0.3);
|
|
}
|
|
|
|
&--size-large {
|
|
padding: base(0.4);
|
|
}
|
|
|
|
&--disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|