Skip to content

Commit

Permalink
fix RPC layout
Browse files Browse the repository at this point in the history
  • Loading branch information
jvonasek committed Jun 20, 2024
1 parent ad47138 commit 6595185
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions src/components/Layout/Page/Page.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ export const SPage = styled.div`
--nav-height: 70px;
overflow-y: auto;
}
@media ${theme.viewport.gte.md} {
height: 100vh;
}
`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ export const SContainer = styled.div`
padding-bottom: calc(80px + env(safe-area-inset-bottom));
@media ${theme.viewport.gte.md} {
position: fixed;
bottom: 16px;
right: 20px;
margin: 0;
}
@media ${theme.viewport.gte.sm} {
margin-left: auto;
margin-right: 20px;
right: 0px;
bottom: 16px;
padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
@media ${theme.viewport.gte.md} {
position: fixed;
bottom: 16px;
right: 20px;
margin: 0;
padding-bottom: 0;
}
`
Expand Down

0 comments on commit 6595185

Please sign in to comment.