This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes CSS spacing and availability issues for breadcrumb, catalog sor…
…t, and result count blocks. (#8391) * Reset margin on result count block * Reset margin for catalog sort block * reset margin and other fixes for breadcrumb block. * Move styles to relevant files
- Loading branch information
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
.woocommerce.wc-block-breadcrumbs { | ||
font-size: inherit; | ||
} | ||
.woocommerce.woocommerce-shop .wc-block-breadcrumbs { | ||
.woocommerce-breadcrumb { | ||
margin: auto; | ||
display: block; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,8 @@ | |
font-size: inherit; | ||
color: inherit; | ||
} | ||
|
||
.woocommerce-ordering { | ||
margin: auto; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,8 @@ | |
.woocommerce-result-count { | ||
float: none; | ||
font-size: inherit; | ||
// reset for margin | ||
margin: auto; | ||
} | ||
} | ||
|