-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add AVS list to Operator details #188
Conversation
@@ -105,7 +105,7 @@ export default function AVSDetails() { | |||
cursor: 'rounded border border-outline shadow-none', | |||
panel: 'p-0', | |||
tab: 'h-fit p-2', | |||
tabList: 'rd-box w-full p-2' | |||
tabList: 'rd-box w-full !overflow-x-scroll p-2' |
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.
@rubo the rd-box
s overflow hidden caused the tab list horizontal scroll to stop working on smaller screens
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.
It works now on a mobile. What's the problem?
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.
It fails when there are errors. The error messages causes each tab to be longer than usual, causing tabs to be cut off.
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.
Got it. I'll check but for this particular container disabling it is ok.
@@ -122,7 +122,7 @@ export default function AVSDetails() { | |||
</div> | |||
<div className="flex w-full justify-center"> | |||
{state.isAVSLoading && ( | |||
<Skeleton className="mt-2 h-4 w-full rounded-md" /> | |||
<Skeleton className="mt-2 h-4 w-full min-w-16 rounded-md" /> |
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.
For short texts like "TVL", skeleton expansion is too short. So, added a min width.
After discussing with Clem, simple list for now.