Skip to content

Commit

Permalink
app: Use header, footer, and main
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Dec 30, 2020
1 parent 75e393e commit 2076dee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/renderer/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const Release = styled('div')`
color: #777a7b;
`;

const Wrapper = styled('div')`
const Wrapper = styled('footer')`
padding: 0.5rem;
display: grid;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/Titlebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Toolbar = () => (
</Container>
);

const Container = styled('div')`
const Container = styled('header')`
position: sticky;
top: 0;
height: 36px;
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/views/Application.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Application = () => (
</MemoryRouter>
);

const Frame = styled('div')`
const Frame = styled('main')`
display: flex;
flex-direction: column;
background: #fff;
Expand Down

0 comments on commit 2076dee

Please sign in to comment.