Files
klz-cables.com/.pnpm-store/v10/files/34/be67d2c497b6ae3cf41d8ec02ec3ffe7d08a648ccb4d930dc984026fd17eceb5d905de891a27f149f1e63d673472bdfe3a5298e9b15a4945c35313b15737eb
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

75 lines
1.4 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.banner {
font-size: 1rem;
line-height: base(1);
border: 0;
vertical-align: middle;
background: var(--theme-elevation-100);
color: var(--theme-elevation-800);
border-radius: $style-radius-m;
padding: base(0.5);
margin-bottom: $baseline;
&--has-action {
cursor: pointer;
text-decoration: none;
}
&--has-icon {
display: flex;
svg {
display: block;
}
}
&--type-default {
&.button--has-action {
&:hover {
background: var(--theme-elevation-900);
}
&:active {
background: var(--theme-elevation-950);
}
}
}
&--type-error {
background: var(--theme-error-100);
color: var(--theme-error-600);
svg {
@include color-svg(var(--theme-error-600));
}
&.button--has-action {
&:hover {
background: var(--theme-error-200);
}
&:active {
background: var(--theme-error-300);
}
}
}
&--type-success {
background: var(--theme-success-100);
color: var(--theme-success-600);
&.button--has-action {
&:hover {
background: var(--theme-success-200);
}
&:active {
background: var(--theme-success-200);
}
}
}
}
}