-
Notifications
You must be signed in to change notification settings - Fork 97
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
Fix events table styling #4754
Fix events table styling #4754
Conversation
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.
@ikem-legend @eniolam1000752 this shouldn't be a link when -
lisk-desktop/src/modules/transaction/components/TransactionEventsRow/components.js
Line 13 in 1abd63a
{id.length === 64 ? truncateTransactionID(id) : '-'} |
when there is no transaction id, users shouldn't navigate/redirect, the -
should be displayed
@@ -47,3 +47,8 @@ h1 { | |||
.wrapper { | |||
margin-bottom: 25px; | |||
} | |||
|
|||
.content { |
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 would be nice if we could refactor away from important and be more fine grained with how important/fine grained a rule is. For example is this specific enough?
.wrapper {
margin-bottom: 25px;
& .content {
padding-left: 0;
padding-right: 0;
}
}
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.
50ea40e
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.
nice job
What was the problem?
This PR resolves #4735
How was it solved?
How was it tested?
Visually