mirror of
https://github.com/penpot/penpot.git
synced 2026-07-02 20:35:33 +00:00
🐛 Fix overlay position grid (#10512)
This commit is contained in:
parent
abbd28d101
commit
665e8e018e
@ -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;
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user