Skip to content

Commit

Permalink
Fix z-index issue with the add pattern drop-down (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnaab authored Jun 6, 2024
1 parent 829d442 commit c13d214
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ export const AddPatternDropdown = ({ uswdsRoot }: { uswdsRoot: string }) => {
};

return (
<fieldset className={`${styles.usaFieldset} usa-fieldset position-sticky`}>
<fieldset
className={`${styles.usaFieldset} usa-fieldset position-sticky z-100`}
>
<p className="tablet:display-block display-none usa-label margin-top-0 font-ui-3xs text-uppercase margin-bottom-3">
Add Element
</p>
Expand Down

0 comments on commit c13d214

Please sign in to comment.