Skip to content

Commit

Permalink
Merge 9c71f6d into 6d13c60
Browse files Browse the repository at this point in the history
  • Loading branch information
victorhmp committed Dec 2, 2019
2 parents 6d13c60 + 9c71f6d commit 7d6f225
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Default blocks implementation for `footer` block.

## [2.17.2] - 2019-10-18

Expand Down
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 7d6f225

Please sign in to comment.