Skip to content

Commit

Permalink
Adjust body padding
Browse files Browse the repository at this point in the history
  • Loading branch information
therealsujitk committed Dec 9, 2023
1 parent ef67acf commit bf15472
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 50 deletions.
46 changes: 0 additions & 46 deletions frontend/README.md

This file was deleted.

16 changes: 14 additions & 2 deletions frontend/src/App.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.App {
max-width: 600px;
max-width: 750px;
margin: auto;
padding: 30px;
padding: 70px;
}

footer ul {
Expand All @@ -15,3 +15,15 @@ footer ul li {
footer a {
text-decoration: none;
}

@media screen and (max-width: 992px) {
.App {
padding: 50px;
}
}

@media screen and (max-width: 600px) {
.App {
padding: 30px;
}
}
4 changes: 2 additions & 2 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ function App() {
<CssBaseline />
<div className='App'>
<header>
<Box sx={{display: 'flex', alignItems: 'center', gap: 1.5}}>
<Box sx={{display: 'flex', alignItems: 'center', gap: 1.5, mb: 3}}>
<svg width="45" height="40" viewBox="0 0 50 42.763" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m24.689 0 24.689 42.763H0L24.689 0Z" fill="#fff"/></svg>
<h1>Vercel Badge</h1>
<Typography level="h1">Vercel Badge</Typography>
</Box>
</header>

Expand Down

0 comments on commit bf15472

Please sign in to comment.