blob: c3b9a140d40ff7bb4e14b40fbee1f87943498322 (
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
25
26
27
28
29
30
31
32
33
34
|
import styled from 'styled-components';
import { colors } from '../../config.json';
import * as Cell from './cell';
import { NavigationScrollbars } from './NavigationBar';
import Selector from './cell/Selector';
export const StyledInputFrame = styled(Cell.InputFrame)({
flex: 0,
});
export const StyledSelectorContainer = styled.div({
flex: 0,
});
export const StyledSelectorForFooter = (styled(Selector)({
marginBottom: 0,
}) as unknown) as new <T>() => Selector<T>;
export const StyledTunnelProtocolContainer = styled(StyledSelectorContainer)({
marginBottom: '20px',
});
export const StyledNavigationScrollbars = styled(NavigationScrollbars)({
flex: 1,
});
export const StyledNoWireguardKeyErrorContainer = styled(Cell.Footer)({
paddingBottom: 0,
});
export const StyledNoWireguardKeyError = styled(Cell.FooterText)({
fontWeight: 800,
color: colors.red,
});
|