diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-07-21 19:55:04 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-07-21 19:55:04 -0500 |
commit | cc8a1702043cfbd783f4caa61ab9eb8aeb421072 (patch) | |
tree | 2fff2daed3558d555ee79f34b3c8ba714e40789b /src/view/lib | |
parent | 29ed3d2ecf1fd6de8af0f25f6d541fe2adaf61f9 (diff) | |
download | voidsky-cc8a1702043cfbd783f4caa61ab9eb8aeb421072.tar.zst |
Add profile view
Diffstat (limited to 'src/view/lib')
-rw-r--r-- | src/view/lib/styles.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/view/lib/styles.ts b/src/view/lib/styles.ts index 44ee2dba7..d80e2d030 100644 --- a/src/view/lib/styles.ts +++ b/src/view/lib/styles.ts @@ -34,4 +34,21 @@ export const s = StyleSheet.create({ // colors black: {color: 'black'}, gray: {color: 'gray'}, + + // margins + mr2: {marginRight: 2}, + mr5: {marginRight: 5}, + mr10: {marginRight: 10}, + ml2: {marginLeft: 2}, + ml5: {marginLeft: 5}, + ml10: {marginLeft: 10}, + mt2: {marginTop: 2}, + mt5: {marginTop: 5}, + mt10: {marginTop: 10}, + mb2: {marginBottom: 2}, + mb5: {marginBottom: 5}, + mb10: {marginBottom: 10}, + + // flex + flexRow: {flexDirection: 'row'}, }) |