FEATURE Refining the block width with the new alignwide support

This commit is contained in:
Antoine M 2026-01-28 14:39:41 +01:00
parent c738227bba
commit 74a2e7048e

View File

@ -9,11 +9,21 @@
"description": "Example block scaffolded with Create Block tool.", "description": "Example block scaffolded with Create Block tool.",
"example": {}, "example": {},
"supports": { "supports": {
"html": false "html": false,
"align": [
"wide",
"full"
]
},
"attributes": {
"align": {
"type": "string",
"default": "full"
}
}, },
"textdomain": "front-header", "textdomain": "front-header",
"editorScript": "file:./index.js", "editorScript": "file:./index.js",
"editorStyle": "file:./index.css", "editorStyle": "file:./index.css",
"style": "file:./style-index.css", "style": "file:./style-index.css",
"viewScript": "file:./view.js" "viewScript": "file:./view.js"
} }