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

74 lines
1.7 KiB
Plaintext

@import '../../scss/styles';
@layer payload-default {
.card {
background: var(--theme-elevation-50);
padding: base(0.8);
width: 100%;
min-height: base(4);
position: relative;
border-radius: var(--style-radius-m);
border: 1px solid var(--theme-border-color);
transition-property: border, box-shadow, background;
transition-duration: 100ms;
transition-timing-function: cubic-bezier(0, 0.2, 0.2, 1);
display: flex;
justify-content: space-between;
align-self: start;
gap: base(0.8);
&__title {
@extend %h5;
letter-spacing: 0;
font-weight: 600;
line-height: base(0.8);
width: 100%;
margin: base(0.1) 0;
}
&__actions {
position: relative;
z-index: 2;
display: inline-flex;
.btn {
margin: 0;
flex-shrink: 0;
}
.btn__icon {
border: 1px solid var(--theme-border-color);
transition-property: border, box-shadow, color, background;
transition-duration: 100ms;
transition-timing-function: cubic-bezier(0, 0.2, 0.2, 1);
&:hover {
border: 1px solid var(--theme-elevation-500);
background-color: var(--theme-elevation-0);
color: currentColor;
@include shadow-sm;
}
}
}
&--has-onclick {
cursor: pointer;
&:hover {
background: var(--theme-elevation-50);
border: 1px solid var(--theme-elevation-250);
box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.05);
}
}
&__click {
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
margin: 0;
}
}
}