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

Commit

Permalink
fix: set icon size for the top menu icons on smaller screens (#4266)
Browse files Browse the repository at this point in the history
These were forgotten with the refactor

Co-authored-by: VWSCoronaDashboard25 <[email protected]>
  • Loading branch information
VWSCoronaDashboard25 and VWSCoronaDashboard25 authored May 25, 2022
1 parent 4f4abc9 commit 10d9706
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export function TopNavigation() {
>
{collapsible.button(
<NavToggle>
{collapsible.isOpen ? <CloseThick /> : <Menu />}
{collapsible.isOpen
? <CloseThick heigth="36px" width="36px"/>
: <Menu heigth="36px" width="36px"/>}
<VisuallyHidden>
{collapsible.isOpen
? commonTexts.nav.menu.close_menu
Expand Down

0 comments on commit 10d9706

Please sign in to comment.