Skip to content

Commit

Permalink
chore(release): merge in release v4.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
matticbot committed Jan 23, 2025
2 parents 1462233 + e4c327a commit b42ee74
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [4.5.6](https://github.com/Automattic/newspack-blocks/compare/v4.5.5...v4.5.6) (2025-01-23)


### Bug Fixes

* make sure fields after floated inputs clear floats in the modal checkout ([#2030](https://github.com/Automattic/newspack-blocks/issues/2030)) ([274b4d4](https://github.com/Automattic/newspack-blocks/commit/274b4d41aa63dc818a3da49a7fc8315dbdf08757))

## [4.5.5](https://github.com/Automattic/newspack-blocks/compare/v4.5.4...v4.5.5) (2025-01-20)


Expand Down
4 changes: 2 additions & 2 deletions newspack-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
* Author URI: https://newspack.com/
* Text Domain: newspack-blocks
* Domain Path: /languages
* Version: 4.5.5
* Version: 4.5.6
*
* @package Newspack_Blocks
*/

define( 'NEWSPACK_BLOCKS__PLUGIN_FILE', __FILE__ );
define( 'NEWSPACK_BLOCKS__BLOCKS_DIRECTORY', 'dist/' );
define( 'NEWSPACK_BLOCKS__PLUGIN_DIR', plugin_dir_path( NEWSPACK_BLOCKS__PLUGIN_FILE ) );
define( 'NEWSPACK_BLOCKS__VERSION', '4.5.5' );
define( 'NEWSPACK_BLOCKS__VERSION', '4.5.6' );

require_once NEWSPACK_BLOCKS__PLUGIN_DIR . 'includes/class-newspack-blocks.php';
require_once NEWSPACK_BLOCKS__PLUGIN_DIR . 'includes/class-newspack-blocks-api.php';
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@automattic/newspack-blocks",
"version": "4.5.5",
"version": "4.5.6",
"author": "Automattic",
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.5",
Expand Down
12 changes: 10 additions & 2 deletions src/modal-checkout/checkout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,16 @@
}
}

.woocommerce-billing-fields__field-wrapper ~ .form-row {
margin: var(--newspack-ui-spacer-5, 24px) 0 0;
.woocommerce-billing-fields__field-wrapper {
&::after {
clear: both;
content: "";
display: table;
}

& ~ .form-row {
margin: var(--newspack-ui-spacer-5, 24px) 0 0;
}
}

// Additional fields
Expand Down

0 comments on commit b42ee74

Please sign in to comment.