Files
klz-cables.com/.pnpm-store/v10/files/f9/e8221e74f0432f38f2726f3de2cf2a978aa4da9fe533a56b401ab0dcd6c68c7162509131d00b88d0ee2779cac412b12e2adb8ee2696b2e7efd7d9229284caf
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

65 lines
1.2 KiB
Plaintext

@layer payload-default {
.graphic-account {
vector-effect: non-scaling-stroke;
overflow: visible;
position: relative;
&__bg {
fill: var(--theme-elevation-50);
stroke: var(--theme-elevation-200);
stroke-width: 1px;
}
&__head,
&__body {
fill: var(--theme-elevation-200);
}
&--active {
.graphic-account {
&__bg {
fill: var(--theme-elevation-500);
stroke: var(--theme-text);
}
&__head,
&__body {
fill: var(--theme-text);
}
}
}
&:hover:not(.graphic-account--active) {
.graphic-account {
&__bg {
fill: var(--theme-elevation-200);
stroke: var(--theme-elevation-600);
}
&__head,
&__body {
fill: var(--theme-elevation-600);
}
}
}
}
[data-theme='light'] {
.graphic-account {
&--active {
.graphic-account {
&__bg {
fill: var(--theme-elevation-300);
stroke: var(--theme-elevation-600);
}
&__head,
&__body {
fill: var(--theme-elevation-600);
}
}
}
}
}
}