Skip to content

Commit

Permalink
Fixing width (#15)
Browse files Browse the repository at this point in the history
* Some clean up, added Spotify icon for offline/loading state

* Minor clean up in Mobile view

* Updating about text.

* Fixing max width for the Tab Panel
  • Loading branch information
mariatorrentedev authored Apr 18, 2024
1 parent ef1f5dc commit 55d2b0d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ function TabPanel({ children, value, index, ...other }: TabPanelProps) {
{...other}
>
{value === index && (
<Box maxWidth={[250, "100%"]} sx={{ paddingX: [1, 4] }}>
<Box
maxWidth={[250, 900]}
sx={{ paddingX: [1, 4], textAlign: "justify" }}
>
{children}
</Box>
)}
Expand Down

0 comments on commit 55d2b0d

Please sign in to comment.