mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-17 11:42:29 +03:00
Format
This commit is contained in:
parent
446d6e8363
commit
8c616e4565
|
@ -2,7 +2,9 @@ import styled from '@emotion/styled';
|
||||||
import { Base16Theme } from 'react-base16-styling';
|
import { Base16Theme } from 'react-base16-styling';
|
||||||
|
|
||||||
const Divider = styled.div`
|
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};
|
box-shadow: 1px 1px 2px ${(props) => props.theme.base00};
|
||||||
height: ${(props) => props.theme.inputHeight || '30'}px;
|
height: ${(props) => props.theme.inputHeight || '30'}px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user