Merge pull request #991 from AlexVipond/fix-invisible-hr

Add border-width: 1px for horizontal rules
This commit is contained in:
Adam Wathan 2019-07-10 08:21:13 -04:00 committed by GitHub
commit b87aedb80f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 0 deletions

View File

@ -456,6 +456,14 @@ html {
border-color: #e2e8f0;
}
/*
* Ensure horizontal rules are visible by default
*/
hr {
border-width: 1px;
}
/**
* Undo the `border-style: none` reset that Normalize applies to images so that
* our `border-{width}` utilities have the expected effect.

View File

@ -456,6 +456,14 @@ html {
border-color: #e2e8f0;
}
/*
* Ensure horizontal rules are visible by default
*/
hr {
border-width: 1px;
}
/**
* Undo the `border-style: none` reset that Normalize applies to images so that
* our `border-{width}` utilities have the expected effect.

View File

@ -105,6 +105,13 @@ html {
border-color: theme('borderColor.default', currentColor);
}
/*
* Ensure horizontal rules are visible by default
*/
hr {
border-width: 1px;
}
/**
* Undo the `border-style: none` reset that Normalize applies to images so that
* our `border-{width}` utilities have the expected effect.