Merge pull request #715 from quantified-uncertainty/playground-height-fix

don't set playground height (fixes #660)
This commit is contained in:
Ozzie Gooen 2022-06-18 13:06:59 -07:00 committed by GitHub
commit 3ee180a9af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -438,7 +438,7 @@ export const SquigglePlayground: FC<PlaygroundProps> = ({
); );
const withEditor = ( const withEditor = (
<div className="flex mt-1" style={{ height }}> <div className="flex mt-1">
<div className="w-1/2">{tabs}</div> <div className="w-1/2">{tabs}</div>
<div className="w-1/2 p-2 pl-4">{squiggleChart}</div> <div className="w-1/2 p-2 pl-4">{squiggleChart}</div>
</div> </div>