Skip to content
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

Redesign feedback: Post Launch #2505

Open
kattylucy opened this issue Oct 16, 2024 · 8 comments
Open

Redesign feedback: Post Launch #2505

kattylucy opened this issue Oct 16, 2024 · 8 comments
Assignees

Comments

@kattylucy
Copy link
Collaborator

kattylucy commented Oct 16, 2024

Feel free to add all the feedback for the app redesign here. The work here is low priority and would be done POST launch (launch date is Oct 16)

@kattylucy kattylucy self-assigned this Oct 16, 2024
@kattylucy
Copy link
Collaborator Author

kattylucy commented Oct 16, 2024

  • Archive pools have a target word (should not)
  • Tooltip for available networks have a weird number next to the network name (on hover)
  • If non-apy should we remove from the pool performance graph?
  • Give mobile some love

@sonam-jo
Copy link

Saw that you already have mobile on the list above, but two pages in particular

  • Overview: where box with reports should stack under the issue details
  • Liquidity: there is some messiness in the charts (low prio if it is challenging to fix)

Image
Image

@sonam-jo
Copy link

Can we add the rating for LTF on the Landing page too please? See design below

Image

@hieronx
Copy link
Contributor

hieronx commented Oct 25, 2024

@kattylucy a few minor UI comments:

  • On the landing page, the margin between the cards now is 12px, compared to 24px in Figma. This is noticeable mainly because the border shadow of the cards on the hover state is actually cut off by the other cards.
  • The hover state of most buttons is now an inset border. Looking at the Figma, it should be an outset border instead.
  • The border color of cards (on all pages) is now rgb(246, 246, 246) which is really hard to see. The Figma designs specify rgba(207, 207, 207, 50).
  • There is a stroking underline in the rating cards that should be removed:
Screenshot 2024-10-24 at 20 25 33

@kattylucy
Copy link
Collaborator Author

I spend some time today playing with the button - is this a MUST fix? Unfortunately the way we built our button system is causing the issue, we have the styling inside visualButton (which is a span element) and this component is inside a button element which is why we see the border going inwards.

It's a bit time consuming to fix since we use button as for anchor tags and non-interactive elements and the reason on wny we have "visual button". I will have to rewrite visual button and have to change the use across the app.

@hieronx

@hieronx
Copy link
Contributor

hieronx commented Oct 25, 2024

@kattylucy I see the issue.. Definitely not a clean fix, but wdyt about doing this for now:

button {
    border: 3px solid rgba(255, 226, 153, 0);
    border-radius: 3px;
    background-color: rgb(255, 192, 18);

    :hover {
        border-color: rgba(255, 226, 153, 100);
     }

     span {
         border: none;
     }
}

It effectively shows up as an outset border from what I can check, because the button component has an invisible border at all times that just changes color on hover.

If it doesn't work, I do think changing this border behaviour is quite important since it is visible across the app, but it is not critical today, can wait a few weeks.

@kattylucy
Copy link
Collaborator Author

This doesn't work. I will create a ticket so I can spend more time fixing it and testing it across the app since this same button is what we use for anchor tags and other non-interactive buttons so we can't hard code the values. While I finish up assets redesign I can look into this!

@kattylucy
Copy link
Collaborator Author

I just synced with Onno and he helped me out so all good! @hieronx

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants