Skip to content

Commit

Permalink
fix: max width on site
Browse files Browse the repository at this point in the history
  • Loading branch information
gersondinis committed Jan 5, 2024
1 parent caa4c79 commit bd8c087
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chrome-extension",
"private": true,
"version": "1.1.0",
"version": "1.2.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { countries } from 'constants/country';

export const App = () => {
return (
<Stack gap={1} sx={{minWidth: '20rem'}}>
<Stack gap={1} sx={{minWidth: '20rem', maxWidth: '25rem'}}>
{countries.map((country) => (
<CountryCard country={country} key={country} />
))}
Expand Down

0 comments on commit bd8c087

Please sign in to comment.