databag/app/mobile/src/access/Access.styled.js

33 lines
566 B
JavaScript
Raw Normal View History

2022-09-07 21:21:45 +00:00
import styled from 'styled-components/native';
import { Colors } from 'constants/Colors';
export const Wrapper = styled.View`
background-color: ${Colors.background};
width: 100%;
height: 100%;
`
export const Container = styled.View`
padding: 16px;
display: flex;
flex-direction: row;
`
export const Splash = styled.Image`
flex: 1;
width: null;
height: null;
resize-mode: contain;
`
export const Pane = styled.View`
width: 50%;
height: 100%;
`
export const PaddedPane = styled.View`
width: 50%;
height: 100%;
padding-right: 16px;
`