Skip to content

Commit

Permalink
fix(patterns): adjust flex layout for header
Browse files Browse the repository at this point in the history
  • Loading branch information
chanceaclark committed Sep 12, 2024
1 parent 66bc0c8 commit eef4d38
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/gentle-goats-cheer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@bigcommerce/big-design-patterns': patch
---

Fix header wrapping on smaller screens
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const Header = ({
title,
}: HeaderProps) => {
return (
<Flex as="header" flexDirection={{ mobile: 'column', tablet: 'row' }} flexWrap="wrap">
<Flex as="header" flexDirection="row" flexWrap="wrap">
{backLink && (
<FlexItem flexBasis="100%">
<BackLink {...backLink} />
Expand Down

0 comments on commit eef4d38

Please sign in to comment.