mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-09 15:52:26 +03:00
Fix
This commit is contained in:
parent
282a9bf9f7
commit
446d6e8363
|
@ -1,8 +1,8 @@
|
|||
import styled from '@emotion/styled';
|
||||
import { Theme } from '../../themes/default';
|
||||
import { Base16Theme } from 'react-base16-styling';
|
||||
|
||||
const Divider = styled.div`
|
||||
background-color: ${(props: { theme?: Theme }) => 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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user