Files
klz-cables.com/.pnpm-store/v10/files/38/4648623ac3b1b1668ccbb105865d86a548f6ad29b7ed35003bf5a9172f56c1e7480c7ba9b091097a2e0f59fd1afff2fc7a94dd1920b737d4361fe65ad84839
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

50 lines
862 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.field-type.textarea {
position: relative;
display: flex;
flex-direction: column;
textarea {
@include formInput();
overflow-y: auto;
resize: vertical;
min-height: base(3);
height: auto;
display: flex;
}
textarea:not(:empty) {
field-sizing: content;
min-height: calc(var(--rows) * var(--base) + var(--base) * 0.8 + 2px);
}
&.read-only {
.textarea-outer {
@include readOnly;
}
}
}
html[data-theme='light'] {
.field-type.textarea {
&.error {
textarea {
@include lightInputError;
}
}
}
}
html[data-theme='dark'] {
.field-type.textarea {
&.error {
textarea {
@include darkInputError;
}
}
}
}
}