fix(article): <hr> should be visible in night theme (#3202)

This commit is contained in:
briwa 2019-06-18 02:54:53 +08:00 committed by Ben Halpern
parent 2108de5052
commit deb83f71a8

View file

@ -477,7 +477,13 @@ article {
hr {
width: calc(25% + 12px);
opacity: 0.1;
border: 1px solid black;
border-width: 1px;
border-style: solid;
@include themeable(
border-color,
theme-color,
$black
);
margin: 1.3em auto 1.5em;
}