diff --git a/packages/redux-devtools-ui/src/Toolbar/styles/Divider.ts b/packages/redux-devtools-ui/src/Toolbar/styles/Divider.ts index c6bdc02b..764fdba8 100644 --- a/packages/redux-devtools-ui/src/Toolbar/styles/Divider.ts +++ b/packages/redux-devtools-ui/src/Toolbar/styles/Divider.ts @@ -2,7 +2,9 @@ import styled from '@emotion/styled'; import { Base16Theme } from 'react-base16-styling'; const Divider = styled.div` - background-color: ${(props: { theme?: Base16Theme & { inputHeight?: number } }) => props.theme!.base02}; + background-color: ${(props: { + theme?: Base16Theme & { inputHeight?: number }; + }) => props.theme!.base02}; box-shadow: 1px 1px 2px ${(props) => props.theme.base00}; height: ${(props) => props.theme.inputHeight || '30'}px; width: 1px;