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

36 lines
758 B
Plaintext

@layer payload-default {
.drag-overlay-selection {
&__cards {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
}
&__card {
position: absolute;
width: 100%;
height: 100%;
grid-column: 1/2;
grid-row: 1/2;
}
&__card-count {
position: absolute;
transform: translate(calc(50% - 3px), calc(-50% - 3px));
right: 0;
top: 0;
border-radius: 50%;
line-height: 1;
width: 26px;
height: 26px;
display: flex;
align-items: center;
justify-content: center;
color: var(--theme-success-50);
background: var(--theme-success-600);
font-weight: bold;
font-variant-numeric: tabular-nums;
}
}
}