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
45 lines
774 B
Plaintext
45 lines
774 B
Plaintext
@import '../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.per-page {
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: calc(var(--base) / 4);
|
|
}
|
|
|
|
&__base-button {
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
&__button {
|
|
@extend %btn-reset;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--theme-elevation-500);
|
|
|
|
&:hover,
|
|
&:focus-visible {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
svg .stroke {
|
|
stroke: currentColor;
|
|
}
|
|
}
|
|
|
|
&__button-active {
|
|
font-weight: bold;
|
|
color: var(--theme-text);
|
|
}
|
|
}
|
|
}
|