Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
Bug 1522233 - Add styling for HorizonalRule and Hero borders
Browse files Browse the repository at this point in the history
  • Loading branch information
k88hudson committed Jan 23, 2019
1 parent 0b4afff commit c90f668
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Expand Up @@ -28,8 +28,8 @@
color: $grey-50;
margin: 18px 0;
padding: 20px 0;
border-top: 1px solid transparentize($grey-40, 0.64);
border-bottom: 1px solid transparentize($grey-40, 0.64);
border-top: $border-secondary;
border-bottom: $border-secondary;

&:hover .meta header {
color: $blue-60;
Expand Down
Expand Up @@ -3,7 +3,7 @@ import React from "react";
export class HorizontalRule extends React.PureComponent {
render() {
return (
<hr />
<hr className="ds-hr" />
);
}
}
@@ -0,0 +1,5 @@
.ds-hr {
border: 0;
height: 0;
border-top: $border-secondary;
}

0 comments on commit c90f668

Please sign in to comment.