-
Notifications
You must be signed in to change notification settings - Fork 17
fix: fix buttons incorrect align in Nodes and Tenants tables #830
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
Conversation
| a { | ||
| text-decoration: none; | ||
|
|
||
| color: var(--g-color-text-link); | ||
| } | ||
|
|
||
| a:hover { | ||
| color: var(--g-color-text-link-hover); | ||
| } |
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.
Move styles inside link class, so link colors won't apply to buttons
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.
Why should we define these styles? Is it possible to use proper uikit components with needed styles?
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.
React-router Link was used, it doesn't have proper styles. Replaced it with out link wrapper and removed unneeded styles
| a { | ||
| text-decoration: none; | ||
|
|
||
| color: var(--g-color-text-link); | ||
| } | ||
|
|
||
| a:hover { | ||
| color: var(--g-color-text-link-hover); | ||
| } |
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.
Why should we define these styles? Is it possible to use proper uikit components with needed styles?
82f04f0 to
975bcaa
Compare
Fixes #829
Before:

After:
