Skip to content

Commit

Permalink
move flag to bottom of viewport
Browse files Browse the repository at this point in the history
  • Loading branch information
clord committed Apr 20, 2022
1 parent ac4c73c commit 9b70d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ToggleFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export function ToggleFeatures({ defaultOpen = false }: { defaultOpen?: boolean
};

return (
<div ref={setRoot} style={{ zIndex: 99999, position: 'fixed', width: '100%', height: '40px', bottom: 0 }}>
<div ref={setRoot} style={{ zIndex: 99999, position: 'fixed', width: '100%', height: '0', bottom: 0 }}>
{root != null ? (
<ShadowContent root={root}>
<ToggleFeatureUnwrapped defaultOpen={defaultOpen} />
Expand Down

0 comments on commit 9b70d88

Please sign in to comment.