Files
klz-cables.com/.pnpm-store/v10/files/35/6596b24258d1bf3ab6bce2c8471e820b454a0e17fb71b140b6b474434c031adefaf8e964982fb80f44ec77312fb3285733ff57290ab61efda4ad04a6638b61
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

47 lines
1022 B
Plaintext

@import '../../scss/styles';
@layer payload-default {
.hamburger {
padding: 0;
border: 0;
cursor: pointer;
background-color: var(--theme-bg);
outline: none;
position: relative;
color: var(--theme-text);
box-shadow: 0px 0px 0px 1px var(--theme-elevation-150);
padding: base(0.1);
border-radius: 3px;
position: relative;
z-index: 1;
height: 100%;
width: 100%;
transition-property: box-shadow, background-color;
transition-duration: 100ms;
transition-timing-function: cubic-bezier(0, 0.2, 0.2, 1);
--hamburger-size: var(--base);
&:hover {
background-color: var(--theme-elevation-100);
box-shadow: 0px 0px 0px 1px var(--theme-elevation-500);
}
&:focus {
outline: none;
}
&::after {
z-index: -1;
}
&__open-icon,
&__close-icon {
width: var(--hamburger-size);
height: var(--hamburger-size);
display: flex;
align-items: center;
justify-content: center;
}
}
}