Skip to content

Instantly share code, notes, and snippets.

@diego3g
Created September 20, 2017 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diego3g/07886929baf179c3d4cd8be0551d959b to your computer and use it in GitHub Desktop.
Save diego3g/07886929baf179c3d4cd8be0551d959b to your computer and use it in GitHub Desktop.
// src/styles/general.js
import metrics from './metrics';
import colors from './colors';
import fonts from './fonts';
const general = {
container: {
flex: 1,
backgroundColor: colors.background,
},
section: {
margin: metrics.doubleBaseMargin,
},
sectionTitle: {
color: colors.text,
fontWeight: 'bold',
fontSize: fonts.regular,
alignSelf: 'center',
marginBottom: metrics.doubleBaseMargin,
},
};
export default general;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment