Skip to content

Commit

Permalink
fix: app 0 margins
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Aug 23, 2023
1 parent 5dd4a97 commit 08e968f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/summit-2023/src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ html,
min-height: 100vh;
position: relative;
}
.MainContent {
.main-content {
flex: 1;
display: flex;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion ui/summit-2023/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function App() {
/>
<div className="App">
<Header />
<div className="MainContent">
<div className="main-content">
<Container maxWidth="xl">
<Box my={2}>
<Routes>
Expand Down
5 changes: 5 additions & 0 deletions ui/summit-2023/src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,8 @@
font-weight: 400;
src: url(./common/resources/fonts/Roboto-Light.ttf) format('ttf');
}
body, html {
margin: 0;
padding: 0;
overflow-x: hidden;
}

0 comments on commit 08e968f

Please sign in to comment.