Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
style: fix the height of the header
Browse files Browse the repository at this point in the history
  • Loading branch information
rot1024 committed Dec 17, 2021
1 parent ec74f66 commit 9d6acc0
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -28,7 +28,7 @@ const EarthEditorPage: React.FC<Props> = ({
{loading && <Loading />}
{loaded && (
<Wrapper>
{header}
{header && <div>{header}</div>}
<Wrapper2>
<Resizable
direction="vertical"
Expand Down Expand Up @@ -66,7 +66,7 @@ const Wrapper = styled.div`

const Wrapper2 = styled.div`
display: flex;
flex: 1 1 auto;
flex: auto;
overflow: hidden;
`;

Expand Down

0 comments on commit 9d6acc0

Please sign in to comment.