Skip to content

Commit 294ec82

Browse files
Merge pull request #336 from FormidableLabs/fix-viewport-height-firefox
Explicitly set viewport height for Firefox
2 parents 51f9ef3 + 320889c commit 294ec82

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/panel/pages/explorer/components/Arguments.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export const Arguments: FC<
88
args?: ParsedFieldNode["args"];
99
} & ComponentProps<typeof ArgumentText>
1010
> = ({ args, ...props }) => {
11-
console.log(args);
1211
if (!args) {
1312
return null;
1413
}

src/panel/theme.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,10 @@ export const GlobalStyle = createGlobalStyle`
359359
scrollbar-width: thin;
360360
}
361361
362+
html, body {
363+
height: 100%;
364+
}
365+
362366
::-webkit-scrollbar {
363367
width: 8px;
364368
height: 8px;

0 commit comments

Comments
 (0)