🐛 Fix redundant longhand margin-block properties in options.scss

Combine margin-block-start and margin-block-end into the margin-block
shorthand to satisfy the declaration-block-no-redundant-longhand-properties
stylelint rule.

Signed-off-by: Andrey Antukh <niwi@niwi.nz>
This commit is contained in:
Andrey Antukh 2026-04-29 07:38:08 +00:00
parent b8f1b6e0c3
commit ea971a0109

View File

@ -25,9 +25,8 @@
grid-auto-rows: auto;
gap: var(--sp-s);
width: $sz-500;
margin-block-start: var(--sp-xxxl);
margin-block: var(--sp-xxxl) $sz-120; /* FIXME: this should be a proper token */
padding-block-start: var(--sp-xxxl);
margin-block-end: $sz-120; /* FIXME: this should be a proper token */
border-block-start: $b-1 solid var(--color-background-quaternary);
color: var(--color-foreground-primary);
}