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

46 lines
1.3 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.field-diff {
&__locale-label {
background: var(--theme-elevation-100);
border-radius: var(--style-radius-s);
padding: calc(var(--base) * 0.2);
// border-radius: $style-radius-m;
[dir='ltr'] & {
margin-right: calc(var(--base) * 0.25);
}
[dir='rtl'] & {
margin-left: calc(var(--base) * 0.25);
}
}
&-container {
position: relative;
// Vertical separator line - not needed anymore, as the parent version view container adds a vertical line that spans the entire height of the container.
/*
&::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: var(--left-offset);
width: 1px;
background-color: var(--theme-elevation-100);
transform: translateX(-50%); // Center the line
}*/
}
&-content {
display: grid;
// Need to use 50% 50% so that we can apply overflow-x without the column shrinking to the content width.
// Need -base(0.5) to enure the gap is center aligned - this is required when using 50% over 1fr.
grid-template-columns: calc(50% - base(0.5)) calc(50% - base(0.5));
gap: base(1);
background: var(--theme-elevation-50);
padding: base(0.5);
}
}
}