-
Notifications
You must be signed in to change notification settings - Fork 148
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 new link for try function #2122
Conversation
@agruning, |
margin-left: 25px; | ||
margin-bottom: 4px; | ||
align-self: flex-end; | ||
} |
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 not combine these in a single declaration?
.link, .link-position { ... } #Closed
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.
.link inherits the color and hover characteristic of a link, but with this component we only want the correct positioning
In reply to: 154775843 [](ancestors = 154775843)
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.
Yes. I wasn't suggesting that you get rid of the ".link-position" class, just that you could combine these two blocks as below:
.link, .link-position {
margin-left: 25px;
margin-bottom: 4px;
align-self: flex-end;
}
In reply to: 154776451 [](ancestors = 154776451,154775843)
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.
fixes #2090