Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Remove full-width mode from cart and checkout block #5315

Merged
merged 1 commit into from
Dec 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/js/blocks/cart-checkout/cart/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const settings = {
keywords: [ __( 'WooCommerce', 'woo-gutenberg-products-block' ) ],
description: __( 'Shopping cart.', 'woo-gutenberg-products-block' ),
supports: {
align: [ 'wide', 'full' ],
align: [ 'wide' ],
html: false,
multiple: false,
__experimentalExposeControlsToChildren: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Contains blocks that are displayed when the cart is empty.",
"category": "woocommerce",
"supports": {
"align": [ "wide", "full" ],
"align": [ "wide" ],
"html": false,
"multiple": false,
"reusable": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Contains blocks that are displayed when the cart contains products.",
"category": "woocommerce",
"supports": {
"align": [ "wide", "full" ],
"align": [ "wide" ],
"html": false,
"multiple": false,
"reusable": false,
Expand Down
2 changes: 1 addition & 1 deletion assets/js/blocks/cart-checkout/checkout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const settings = {
'woo-gutenberg-products-block'
),
supports: {
align: [ 'wide', 'full' ],
align: [ 'wide' ],
html: false,
multiple: false,
},
Expand Down