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

Commit

Permalink
Fix empty spaces in the address form
Browse files Browse the repository at this point in the history
  • Loading branch information
tarhi-saad committed Nov 3, 2023
1 parent 3387709 commit d9fae2a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 0 calc(#{$gap-smaller} * 2);

.wc-block-components-text-input,
.wc-block-components-country-input,
.wc-block-components-state-input {
flex: 0 0 calc(50% - #{$gap-smaller});
flex: 1 0 calc(50% - #{$gap-smaller});
box-sizing: border-box;

&:nth-of-type(2),
Expand Down

0 comments on commit d9fae2a

Please sign in to comment.