-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
frontend: bottom nav for mobile #3211
frontend: bottom nav for mobile #3211
Conversation
5a8a461
to
e2db87c
Compare
e2db87c
to
47fc7a2
Compare
</svg> | ||
); | ||
|
||
export const ExchangeIconSVG = () => ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using "raw" svg instead of passing it into an image for 2 reasons:
- We can change its fill colour (for Link's active state) easily.
- Also prevents flickering which exists if we're using conditional rendering for svg that are passed into
img
. e.g
active ? <BlueIconImage /> : <DarkIconImage />
47fc7a2
to
7cd2f7a
Compare
Converting back to draft as we need to figure out regarding the UI if there's no connected accounts available. |
7cd2f7a
to
8a7f1e4
Compare
8a7f1e4
to
7810812
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tested in webdev only so far
frontends/web/src/components/settingsButton/outlined-settings-button.tsx
Show resolved
Hide resolved
frontends/web/src/components/settingsButton/outlined-settings-button.tsx
Show resolved
Hide resolved
frontends/web/src/components/bottom-navigation/bottom-navigation.tsx
Outdated
Show resolved
Hide resolved
frontends/web/src/components/bottom-navigation/bottom-navigation.tsx
Outdated
Show resolved
Hide resolved
frontends/web/src/components/bottom-navigation/bottom-navigation.tsx
Outdated
Show resolved
Hide resolved
7810812
to
5c4d6a4
Compare
Thanks for the review @thisconnect , rebased & made changes PTAL 🙏 |
989da64
to
1511cc2
Compare
@thisconnect @jadzeidan , I reduced the font size for the bottom menu label slightly: ![]() I think it looks better while saving space. EDIT: also adjusted the height, sorry 😄 ![]() |
e3e25e5
to
67d4c60
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just 2 small nits'
d9a6bdd
to
67f831c
Compare
@thisconnect , thanks! Changes addressed. |
67f831c
to
be7837d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you 👍
LGTM
created a bottom navigation bar and hide the sidebar on mobile for better mobile UX. Also created 2 new routes / page, the "all accounts" route and "more" route to support this new bottom navigation bar.
be7837d
to
a6d6af0
Compare
Some screenshots for preview:



