Skip to content

Commit

Permalink
fix: shrink-0 user menu icons (#3114)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanjoshi914 authored Mar 27, 2024
1 parent 190544d commit 0323c16
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/components/UserMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ export default function UserMenu() {
openOptions("wallet");
}}
>
<PopiconsExpandLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200" />
<PopiconsExpandLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200 shrink-0" />
{tCommon("full_screen")}
</Menu.ItemButton>
<Menu.ItemButton
onClick={() => {
openOptions("publishers");
}}
>
<ConnectedSiteIcon className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200" />
<ConnectedSiteIcon className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200 shrink-0" />
{tCommon("connected_sites")}
</Menu.ItemButton>
</div>
Expand All @@ -69,15 +69,15 @@ export default function UserMenu() {
openOptions("settings");
}}
>
<PopiconsCogLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200" />
<PopiconsCogLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200 shrink-0" />
{tCommon("settings")}
</Menu.ItemButton>
<Menu.ItemButton
onClick={() => {
utils.openUrl("https://feedback.getalby.com");
}}
>
<PopiconsCommentLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200" />
<PopiconsCommentLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200 shrink-0" />
{tCommon("feedback")}
</Menu.ItemButton>

Expand All @@ -88,12 +88,12 @@ export default function UserMenu() {
);
}}
>
<PopiconsBulbLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200" />
<PopiconsBulbLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200 shrink-0" />
{tCommon("help")}
</Menu.ItemButton>

<Menu.ItemButton onClick={lock}>
<PopiconsLockLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200" />
<PopiconsLockLine className="h-5 w-5 mr-2 text-gray-800 dark:text-neutral-200 shrink-0" />
{tCommon("actions.lock")}
</Menu.ItemButton>
</Menu.List>
Expand Down

0 comments on commit 0323c16

Please sign in to comment.