Make frame compatible with firefox android

This commit is contained in:
mrjvs
2024-01-25 20:25:00 +01:00
parent 6cc6c3d29f
commit 302b6ef71c
4 changed files with 13 additions and 8 deletions

View File

@@ -7,9 +7,5 @@ export interface FrameProps {
}
export function Frame(props: FrameProps) {
return (
<div className="frame" style={{ width: 300, height: 300 }}>
{props.children}
</div>
);
return <div className="frame">{props.children}</div>;
}