Files
klz-cables.com/.pnpm-store/v10/files/5c/f8c1201801f11914331d896632d57a802e46f85d473fa484400b853c9c76c8e4f2758c324a54f044f130fd809c3b8ecca3f6319cbe9530f466f7e655592044
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

55 lines
988 B
Plaintext

@layer payload-default {
.relationship-table {
position: relative;
&__header {
display: flex;
justify-content: space-between;
margin-bottom: var(--base);
}
&__actions {
display: flex;
align-items: center;
gap: var(--base);
}
&__columns-inner {
padding-bottom: var(--base);
}
&__add-new-polymorphic-wrapper {
display: inline-flex;
}
&__add-new-polymorphic .btn__label {
display: flex;
text-wrap: nowrap;
align-items: center;
}
.table {
table {
width: 100%;
overflow: auto;
[class^='cell'] > p,
[class^='cell'] > span,
[class^='cell'] > a {
line-clamp: 4;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
overflow: hidden;
display: -webkit-box;
max-width: 100vw;
}
}
th,
td:first-child {
min-width: 0;
}
}
}
}