diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-09-09 11:29:46 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-09-09 11:29:46 -0500 |
commit | 44c85bbc56f50255ab65ed9e9478f70c03213e8c (patch) | |
tree | 03ec82e62f7989375c74df80252350831d6809d8 /src/view/com/util/FloatingActionButton.tsx | |
parent | effe3d6b59bcbc2288528021ba73f1596bcf8a1c (diff) | |
download | voidsky-44c85bbc56f50255ab65ed9e9478f70c03213e8c.tar.zst |
UI sizing fixes
Diffstat (limited to 'src/view/com/util/FloatingActionButton.tsx')
-rw-r--r-- | src/view/com/util/FloatingActionButton.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/view/com/util/FloatingActionButton.tsx b/src/view/com/util/FloatingActionButton.tsx index 382bf66b2..bc16c0566 100644 --- a/src/view/com/util/FloatingActionButton.tsx +++ b/src/view/com/util/FloatingActionButton.tsx @@ -16,7 +16,7 @@ export function FAB({icon, onPress}: {icon: IconProp; onPress: OnPress}) { end={{x: 1, y: 1}} style={styles.inner}> <FontAwesomeIcon - size={20} + size={24} icon={icon} color={colors.white} style={styles.icon} @@ -32,17 +32,17 @@ const styles = StyleSheet.create({ zIndex: zIndex.FAB, right: 20, bottom: 10, - width: 50, - height: 50, - borderRadius: 25, + width: 60, + height: 60, + borderRadius: 30, shadowColor: '#000', shadowOpacity: 0.3, shadowOffset: {width: 0, height: 1}, }, inner: { - width: 50, - height: 50, - borderRadius: 25, + width: 60, + height: 60, + borderRadius: 30, justifyContent: 'center', alignItems: 'center', }, |