blob: 6a3685ffb458206c3e96733082080ec16d211531 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import styled from 'styled-components';
import { colors } from '../../config.json';
import { Container } from './Layout';
import { ScopeBar } from './ScopeBar';
export const StyledContainer = styled(Container)({
backgroundColor: colors.darkBlue,
});
export const StyledScopeBar = styled(ScopeBar)({
marginTop: '8px',
});
export const StyledContent = styled.div({
display: 'flex',
flexDirection: 'column',
flex: 1,
overflow: 'visible',
});
export const StyledNavigationBarAttachment = styled.div({
marginTop: '8px',
paddingHorizontal: '4px',
});
|