fix(discover): height

This commit is contained in:
trashtemp 2022-01-15 10:56:02 +01:00
parent 62335e4902
commit 8029f39c4e
No known key found for this signature in database
GPG key ID: D1F0DB65081B0FC6

View file

@ -37,7 +37,7 @@ const Container = styled.div`
`;
const Frame = styled.iframe<{ loaded: boolean }>`
border: 0;
border: none;
${() =>
!isTouchscreenDevice &&
@ -50,7 +50,7 @@ const Frame = styled.iframe<{ loaded: boolean }>`
${(props) =>
props.loaded
? css`
flex-grow: 1;
height: 100%;
`
: css`
display: none;