Files
klz-cables.com/.pnpm-store/v10/files/2f/d86e9af9913a47d65fa5a9a80e3571021eea7ef63345a456980193e37126a310a75028a6c3edeb2eb7dfe64808f73c56bbb24d730194fc3fccc909e2639131
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

60 lines
1.0 KiB
Plaintext

@import '../../../scss/styles.scss';
@layer payload-default {
.simple-table {
margin-bottom: var(--base);
overflow: auto;
max-width: 100%;
&__table {
min-width: 100%;
border-collapse: collapse;
}
&__thead {
color: var(--theme-elevation-400);
}
&__th {
font-weight: normal;
text-align: left;
[dir='rtl'] & {
text-align: right;
}
}
&__th,
&__td {
vertical-align: top;
padding: calc(var(--base) * 0.6);
min-width: 150px;
position: relative;
&:first-child {
padding-inline-start: calc(var(--base) * (0.8));
}
&:last-child {
padding-inline-end: calc(var(--base) * (0.8));
}
}
.simple-table__thead .simple-table__tr {
&:after {
background-color: transparent;
}
}
&__hidden-cell {
position: absolute;
padding: 0;
}
@include mid-break {
&__th,
&__td {
max-width: 70vw;
}
}
}
}