🐛 Fix overlay position grid (#10512)

This commit is contained in:
Eva Marco 2026-07-01 13:40:12 +02:00 committed by GitHub
parent abbd28d101
commit 665e8e018e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 4 deletions

View File

@ -193,10 +193,12 @@
.interaction-row-position {
grid-column: 4 / span 5;
display: grid;
grid-template:
"topleft top topright" 1fr
"left center right" 1fr
"bottomleft bottom bottomright" 1fr / repeat(3, 1fr);
grid-template-areas:
"topleft top topright"
"left center right"
"bottomleft bottom bottomright";
grid-template-rows: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
inline-size: calc($sz-32 * 3);
block-size: calc($sz-32 * 3);
border-radius: $br-8;

View File

@ -14,6 +14,12 @@ export default {
"at-rule-no-unknown": null,
"declaration-property-value-no-unknown": null,
"property-no-unknown": [true, { ignoreProperties: ["text-box"] }],
"declaration-block-no-redundant-longhand-properties": [
true,
{
ignoreShorthands: ["grid-template"],
},
],
"selector-pseudo-class-no-unknown": [
true,
{ ignorePseudoClasses: ["global"] }, // TODO: Avoid global selector usage and remove this exception