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-22 16:06:51 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-07-22 16:06:51 -0500
commit7f04ac172e8ada1244de1df2064e32d32f1c2348 (patch)
treedcecdfcad0746a296b38e8d3acb5dd983589d6b0 /src/view/lib/styles.ts
parentce83648f9da3a93018fc7845bec1d35c1519028d (diff)
downloadvoidsky-7f04ac172e8ada1244de1df2064e32d32f1c2348.tar.zst
Add post composer
Diffstat (limited to 'src/view/lib/styles.ts')
-rw-r--r--src/view/lib/styles.ts21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/view/lib/styles.ts b/src/view/lib/styles.ts
index f0796723c..2ae928119 100644
--- a/src/view/lib/styles.ts
+++ b/src/view/lib/styles.ts
@@ -34,7 +34,7 @@ export const s = StyleSheet.create({
   // colors
   black: {color: 'black'},
   gray: {color: 'gray'},
-  blue: {color: 'blue'},
+  blue: {color: '#006bf7'},
   green: {color: 'green'},
   red: {color: 'red'},
 
@@ -52,6 +52,25 @@ export const s = StyleSheet.create({
   mb5: {marginBottom: 5},
   mb10: {marginBottom: 10},
 
+  // paddings
+  p2: {padding: 2},
+  p5: {padding: 5},
+  p10: {padding: 10},
+  pr2: {paddingRight: 2},
+  pr5: {paddingRight: 5},
+  pr10: {paddingRight: 10},
+  pl2: {paddingLeft: 2},
+  pl5: {paddingLeft: 5},
+  pl10: {paddingLeft: 10},
+  pt2: {paddingTop: 2},
+  pt5: {paddingTop: 5},
+  pt10: {paddingTop: 10},
+  pb2: {paddingBottom: 2},
+  pb5: {paddingBottom: 5},
+  pb10: {paddingBottom: 10},
+
   // flex
   flexRow: {flexDirection: 'row'},
+  flexCol: {flexDirection: 'column'},
+  flex1: {flex: 1},
 })