fix: A couple of dark mode styling issues

This commit is contained in:
Tom Moor
2022-01-20 18:50:05 -08:00
parent 090e5f2849
commit 703708e5d2
2 changed files with 1 additions and 2 deletions

View File

@@ -11,7 +11,6 @@ const EditorStyles = styled.div<{
flex-grow: ${(props) => (props.grow ? 1 : 0)};
justify-content: start;
color: ${(props) => props.theme.text};
background: ${(props) => props.theme.background};
font-family: ${(props) => props.theme.fontFamily};
font-weight: ${(props) => props.theme.fontWeight};
font-size: 1em;

View File

@@ -79,7 +79,7 @@ const DropzoneContainer = styled.div<{ isDragActive?: boolean }>`
background: ${theme.background};
border-radius: 8px;
border: 1px dashed ${theme.divider};
box-shadow: 0 0 0 100px white;
box-shadow: 0 0 0 100px ${theme.background};
z-index: 1;
}