about summary refs log tree commit diff
path: root/src/view/lib/styles.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-07-25 18:31:42 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-07-25 18:31:42 -0500
commitaf55a89758fc6d44896051b9ddd015a73b92e0f6 (patch)
tree5b9e4e226c6fc9210029325daf879cf627b0a1c2 /src/view/lib/styles.ts
parent3794eca88e13c3c292b0f64b1acb1169ecbeb83d (diff)
downloadvoidsky-af55a89758fc6d44896051b9ddd015a73b92e0f6.tar.zst
Add share bottom-sheet to feed and thread
Diffstat (limited to 'src/view/lib/styles.ts')
-rw-r--r--src/view/lib/styles.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/view/lib/styles.ts b/src/view/lib/styles.ts
index 2ae928119..01e02a296 100644
--- a/src/view/lib/styles.ts
+++ b/src/view/lib/styles.ts
@@ -73,4 +73,13 @@ export const s = StyleSheet.create({
   flexRow: {flexDirection: 'row'},
   flexCol: {flexDirection: 'column'},
   flex1: {flex: 1},
+
+  // dimensions
+  w100pct: {width: '100%'},
+  h100pct: {height: '100%'},
+
+  // text align
+  textLeft: {textAlign: 'left'},
+  textCenter: {textAlign: 'center'},
+  textRight: {textAlign: 'right'},
 })