This commit is contained in:
Nathan Bierema 2025-06-01 09:43:55 -04:00
parent 446d6e8363
commit 8c616e4565

View File

@ -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;