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
31 lines
676 B
Plaintext
31 lines
676 B
Plaintext
@import '../../../scss/styles.scss';
|
|
|
|
@layer payload-default {
|
|
.browse-by-folder-button {
|
|
border: 1px solid var(--theme-elevation-100);
|
|
text-decoration: none;
|
|
padding: calc(var(--base) / 2);
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
gap: calc(var(--base) * 0.33);
|
|
margin-top: calc(var(--base) * 0.25);
|
|
margin-bottom: var(--base);
|
|
border-radius: var(--style-radius-m);
|
|
color: var(--theme-text);
|
|
|
|
&.active {
|
|
background-color: var(--theme-elevation-50);
|
|
font-weight: 600;
|
|
|
|
.icon {
|
|
color: var(--theme-elevation-400);
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
color: var(--theme-elevation-300);
|
|
}
|
|
}
|
|
}
|