-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 .border-dashed
#824
Fix .border-dashed
#824
Conversation
Co-Authored-By: Shawn Allen <shawn.allen@github.com>
Update Documentation
This is not needed anymore since it gets added with the responsive mixin
Below responsive variants
This pull request is automatically deployed with Now. |
@@ -2,9 +2,6 @@ | |||
// stylelint-disable primer/selector-no-utility | |||
// stylelint-disable block-opening-brace-space-before, comment-empty-line-before | |||
|
|||
/* Add a gray border on all edges */ | |||
.border { border: $border !important; } |
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.
This can be removed since it already gets added part of the responsive variants below.
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. Let's include this in #810.
Follow up - looks to be related: https://github.com/github/github/issues/117836 ? |
This fixes the
.border-dashed
utility.Problem
It seems that
.border-dashed
gets overridden by the responsive variant.Fix
Moving
.border-dashed
below the responsive variants fixes the issue.Fixes #822