Files
klz-cables.com/.pnpm-store/v10/files/6f/35f35cc5789428983070a0885851296876cca0e08593e7cd4192a4dff4ddd58561f1e4341d47c94bed06dad31e7ecac9ddcb9fe088eae7967cf70273adb26a
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

44 lines
883 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.dropzone {
position: relative;
display: flex;
align-items: center;
padding: calc(var(--base) * 0.9) var(--base);
background: transparent;
border: 1px dotted var(--theme-elevation-400);
border-radius: var(--style-radius-s);
height: 100%;
width: 100%;
box-shadow: 0 0 0 0 transparent;
transition: all 100ms cubic-bezier(0, 0.2, 0.2, 1);
.btn {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
&.dragging {
border-color: var(--theme-success-500);
background: var(--theme-success-150);
@include shadow-m;
* {
pointer-events: none;
}
}
@include mid-break {
display: block;
text-align: center;
}
&.dropzoneStyle--none {
all: unset;
}
}
}