This repository has been archived by the owner on Mar 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Note that I had to register the PrimaryNav component in index.ios.js
- Loading branch information
1 parent
d4cc405
commit be0a524
Showing
6 changed files
with
67 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,4 +77,4 @@ const ApplicationStyles = { | |
} | ||
} | ||
|
||
export default ApplicationStyles | ||
exports.ApplicationStyles = ApplicationStyles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
const type = { | ||
base: 'Avenir-Book', | ||
bold: 'Avenir-Black', | ||
emphasis: 'HelveticaNeue-Italic' | ||
} | ||
|
||
const size = { | ||
h1: 38, | ||
h2: 34, | ||
h3: 30, | ||
h4: 26, | ||
h5: 20, | ||
h6: 19, | ||
input: 18, | ||
regular: 17, | ||
medium: 14, | ||
small: 12, | ||
tiny: 8.5 | ||
} | ||
|
||
const style = { | ||
h1: { | ||
fontFamily: type.base, | ||
fontSize: size.h1 | ||
}, | ||
h2: { | ||
fontWeight: 'bold', | ||
fontSize: size.h2 | ||
}, | ||
h3: { | ||
fontFamily: type.emphasis, | ||
fontSize: size.h3 | ||
}, | ||
h4: { | ||
fontFamily: type.base, | ||
fontSize: size.h4 | ||
}, | ||
h5: { | ||
fontFamily: type.base, | ||
fontSize: size.h5 | ||
}, | ||
h6: { | ||
fontFamily: type.emphasis, | ||
fontSize: size.h6 | ||
}, | ||
normal: { | ||
fontFamily: type.base, | ||
fontSize: size.regular | ||
}, | ||
description: { | ||
fontFamily: type.base, | ||
fontSize: size.medium | ||
} | ||
} | ||
|
||
exports.type = type | ||
exports.style = style | ||
exports.size = size |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters