Fix modals with horizontal form components.

Fix invite / friends menu having sidebars.
This commit is contained in:
Paul
2021-07-02 20:57:48 +01:00
parent d1fd371b70
commit c7bbbcdb8b
4 changed files with 18 additions and 9 deletions

View File

@@ -55,6 +55,11 @@ const ModalContent = styled.div<{ [key in 'attachment' | 'noBackground' | 'borde
margin-top: 0;
}
form {
display: flex;
flex-direction: column;
}
${ props => !props.noBackground && css`
background: var(--secondary-header);
` }