Skip to content

Commit

Permalink
Merge pull request #336 from FormidableLabs/fix-viewport-height-firefox
Browse files Browse the repository at this point in the history
Explicitly set viewport height for Firefox
  • Loading branch information
andyrichardson authored Feb 18, 2021
2 parents 51f9ef3 + 320889c commit 294ec82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/panel/pages/explorer/components/Arguments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export const Arguments: FC<
args?: ParsedFieldNode["args"];
} & ComponentProps<typeof ArgumentText>
> = ({ args, ...props }) => {
console.log(args);
if (!args) {
return null;
}
Expand Down
4 changes: 4 additions & 0 deletions src/panel/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,10 @@ export const GlobalStyle = createGlobalStyle`
scrollbar-width: thin;
}
html, body {
height: 100%;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
Expand Down

0 comments on commit 294ec82

Please sign in to comment.