summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/PreferencesStyles.tsx
blob: b9986f2c382b43b48ce9ad4ffb2fd0b8badff577 (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({
  height: '1px',
});