blixt-wallet
blixt-wallet copied to clipboard
feat: FAQ link in "Help" menu
Added FAQ link in "Help" menu.
Fixes: #792
The latest updates on your projects. Learn more about Vercel for Git ↗︎
| Name | Status | Preview | Updated |
|---|---|---|---|
| blixt-wallet | ✅ Ready (Inspect) | Visit Preview | Sep 21, 2022 at 2:21PM (UTC) |
@ar563 Thank you for the PR, this is great for UX. One semi-related issue is that buttons will line-break if the surrounding modal window is too small, which is the case for small screens.

Please add the following to Help.tsx in order to address this:
--- a/src/windows/Help.tsx
+++ b/src/windows/Help.tsx
@@ -85,9 +85,11 @@ const style = StyleSheet.create({
flexGrow: 1,
alignItems:"flex-end",
flexDirection: "row-reverse",
+ flexWrap: "wrap",
},
actionBarButton: {
marginLeft: 10,
+ marginTop: 10,
},
actionBarButtonText: {
fontSize: 9.75,
@hsjoberg done
Looks great! Thank you for your contribution.