Skip to content

Instantly share code, notes, and snippets.

@jasongaare
Last active July 14, 2017 18:34
Show Gist options
  • Save jasongaare/da796a4568ea41fed0f342189fd31c02 to your computer and use it in GitHub Desktop.
Save jasongaare/da796a4568ea41fed0f342189fd31c02 to your computer and use it in GitHub Desktop.
import styled from 'styled-components/native';
import { isTablet } from 'helpers/device-info';
const SettingsWrapper = styled.View`
padding: 0px ${isTablet ? '96px' : '0px'};
flex: 1;
`;
const SettingsHeader = styled.Text`
font-size: 16px;
font-weight: 600;
margin-left: 16px;
padding: 12px 0px;
`;
const SettingsOptionRow = styled.View`
background-color: white;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 2px;
padding: 12px 16px;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment