Skip to content

Commit

Permalink
Fix minor firefox layout issue
Browse files Browse the repository at this point in the history
  • Loading branch information
spaaaacccee committed Mar 20, 2024
1 parent 549c580 commit 4888711
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion client/src/components/title-bar/TitleBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,16 @@ export const TitleBar = () => {
spacing={1}
sx={{ height: "100%" }}
alignItems="center"
justifyContent="flex-start"
>
<Box sx={{ p: 1, height: "100%" }}>
<Box
sx={{
p: 1,
height: "100%",
// Firefox fix
maxWidth: "min-content",
}}
>
<img src={logo} style={{ height: "100%" }} />
</Box>
{[
Expand Down

0 comments on commit 4888711

Please sign in to comment.