Files
klz-cables.com/.pnpm-store/v10/files/b7/6d6148217c3ed802a7f97e5c2793c75989127b1707d06e99a951622917d6d5077c78a7b7d94462d9330d988dbdd506e4c613b34da7358c99978af8b015ffd1
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

43 lines
877 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.thumbnail-card {
@include btn-reset;
@include shadow-m;
width: 100%;
background: var(--theme-input-bg);
border: 1px solid var(--theme-border-color);
border-radius: var(--style-radius-m);
transition: border 100ms cubic-bezier(0, 0.2, 0.2, 1);
padding: base(0.5);
&__label {
padding: base(0.75) base(0.5) base(0.25) base(0.5);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: 600;
}
&--has-on-click {
cursor: pointer;
&:hover,
&:focus,
&:active {
border: 1px solid var(--theme-elevation-350);
}
}
&--align-label-center {
text-align: center;
}
&__thumbnail {
display: flex;
align-items: center;
justify-content: center;
}
}
}