Skip to content

Commit

Permalink
Remove chevron padding and fix rebase issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeyGuyDylan committed Feb 7, 2025
1 parent 32266ff commit 2e4a61a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ const ProductsTableView: FC< ProductsTableViewProps > = ( { products } ) => {
// and a 'jumping' of the CTA buttons. Having categories as a dependency here is unnecessary
// and leaving it out doesn't cause the values to be incorrect.
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [] );
}, [ isMobileViewport, navigateToInterstitial ] );

const [ view, setView ] = useState< View >( {
type: 'list',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ div.dataviews-wrapper {

.dataviews-view-list__fields {
justify-content: space-between;
flex-wrap: nowrap;
}

&:not(.is-selected).is-hovered,
Expand Down Expand Up @@ -103,6 +104,7 @@ button.product-list-item-chevron {
display: flex;
align-items: center;
justify-content: center;
padding: 0;

cursor: pointer;
background: transparent;
Expand Down

0 comments on commit 2e4a61a

Please sign in to comment.