diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-06 11:39:46 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-06 11:39:46 -0600 |
commit | d60de5e214c049853b4d997b2b0d85530c34adb8 (patch) | |
tree | d032a92c165ff394fb58b1f47a2caea7bab0c81a /src/view/lib/styles.ts | |
parent | 5c1519b9eec638424e74e278f47970ed8675c082 (diff) | |
download | voidsky-d60de5e214c049853b4d997b2b0d85530c34adb8.tar.zst |
Implement terms-of-service and privacy-policy links in signup
Diffstat (limited to 'src/view/lib/styles.ts')
-rw-r--r-- | src/view/lib/styles.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/lib/styles.ts b/src/view/lib/styles.ts index d3fc8c70f..26d33f6cb 100644 --- a/src/view/lib/styles.ts +++ b/src/view/lib/styles.ts @@ -68,6 +68,9 @@ export const s = StyleSheet.create({ light: {fontWeight: '300'}, fw200: {fontWeight: '200'}, + // text decoration + underline: {textDecorationLine: 'underline'}, + // font sizes f9: {fontSize: 9}, f10: {fontSize: 10}, |