Skip to content

Commit

Permalink
Add default blocks implementation for the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
victorhmp committed Nov 29, 2019
1 parent 6d13c60 commit 90fed01
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions store/blocks.json
@@ -0,0 +1,25 @@
{
"footer": {
"blocks": ["footer-layout.mobile", "footer-layout.desktop"]
},
"footer-layout.mobile": {
"children": ["flex-layout.row#powered-by"]
},
"footer-layout.desktop": {
"children": ["flex-layout.row#powered-by"]
},

"flex-layout.row#powered-by": {
"children": ["flex-layout.col#powered-by"],
"props": {
"paddingTop": 4,
"paddingBottom": 4
}
},
"flex-layout.col#powered-by": {
"children": ["powered-by"],
"props": {
"horizontalAlign": "center"
}
}
}

0 comments on commit 90fed01

Please sign in to comment.