blob: f4fa1144697993e19e3877f91f3cac995a6322a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import styled from 'styled-components';
import { colors } from '../../config.json';
import { Container } from './Layout';
export const StyledContainer = styled(Container)({
backgroundColor: colors.darkBlue,
});
export const StyledContent = styled.div({
display: 'flex',
flexDirection: 'column',
flex: 1,
marginBottom: '2px',
});
export const StyledSeparator = styled.div((props: { height?: number }) => ({
height: `${props.height ?? 1}px`,
}));
|