Skip to content

Commit

Permalink
clients/Topbar: prevent flex shrinking
Browse files Browse the repository at this point in the history
  • Loading branch information
zegl committed Jan 3, 2024
1 parent 8b756ab commit a0cbe70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/apps/web/src/components/Shared/Topbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Topbar = (props: {
}) => {
const className = twMerge(
props.isFixed !== false ? 'fixed z-20' : 'z-10',
'flex h-16 w-full items-center justify-between space-x-4 bg-white dark:bg-polar-950 px-4 drop-shadow dark:border-b dark:border-polar-700',
'flex h-16 w-full items-center justify-between space-x-4 bg-white dark:bg-polar-950 px-4 drop-shadow dark:border-b dark:border-polar-700 flex-shrink-0',
)

const hideProfile = props?.hideProfile
Expand Down

1 comment on commit a0cbe70

@vercel
Copy link

@vercel vercel bot commented on a0cbe70 Jan 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.