1
0
Fork 0
mirror of https://github.com/movie-web/movie-web.git synced 2025-02-15 16:50:07 +00:00

Fix logged out font size in navigation

This commit is contained in:
Jip Fr 2023-12-16 13:51:33 +01:00
parent 1c9a18a52c
commit 33fac3b718

View file

@ -86,7 +86,10 @@ export function UserAvatar(props: {
export function NoUserAvatar(props: { iconClass?: string }) {
return (
<div className="relative inline-block p-1 text-type-dimmed">
<Icon className={props.iconClass ?? "text-xl"} icon={Icons.MENU} />
<Icon
className={props.iconClass ?? "text-base ssm:text-xl"}
icon={Icons.MENU}
/>
</div>
);
}