mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
fix(discover): height
This commit is contained in:
parent
62335e4902
commit
8029f39c4e
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ const Container = styled.div`
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Frame = styled.iframe<{ loaded: boolean }>`
|
const Frame = styled.iframe<{ loaded: boolean }>`
|
||||||
border: 0;
|
border: none;
|
||||||
|
|
||||||
${() =>
|
${() =>
|
||||||
!isTouchscreenDevice &&
|
!isTouchscreenDevice &&
|
||||||
|
@ -50,7 +50,7 @@ const Frame = styled.iframe<{ loaded: boolean }>`
|
||||||
${(props) =>
|
${(props) =>
|
||||||
props.loaded
|
props.loaded
|
||||||
? css`
|
? css`
|
||||||
flex-grow: 1;
|
height: 100%;
|
||||||
`
|
`
|
||||||
: css`
|
: css`
|
||||||
display: none;
|
display: none;
|
||||||
|
|
Loading…
Reference in a new issue