mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 16:53: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 }>`
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue