Skip to content

Commit d869775

Browse files
committed
Merge branch 'master' of github.com:BoldGrid/components into dev
2 parents 2ad5717 + 1746760 commit d869775

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@boldgrid/components",
3-
"version": "2.16.0",
3+
"version": "2.16.1",
44
"description": "BoldGrid Components",
55
"license": "ISC",
66
"repository": {

src/components/hr/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = {
2222
],
2323
getComponent: function( name ) {
2424
return `
25-
<hr class="${name}">
25+
<div class="${name}"></div>
2626
`;
2727
}
2828
};

src/components/hr/style.scss

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
hr.bg-hr {
1+
.bg-hr {
22
background: transparent;
33
height: 0;
44
position: relative;
@@ -9,26 +9,26 @@ hr.bg-hr {
99
margin-right: auto;
1010

1111
&.hr-left {
12-
margin-left: 0px;
12+
margin-left: 0;
1313
margin-right: auto;
1414
}
1515
&.hr-center {
1616
margin-right: auto;
1717
margin-left: auto;
1818
}
1919
&.hr-right {
20-
margin-right: 0px;
20+
margin-right: 0;
2121
margin-left: auto;
2222
}
2323

2424
/** Hifidel **/
2525
&.bg-hr-1:after {
2626
content: "";
2727
display: block;
28-
height: 0px;
28+
height: 0;
2929
margin: 0 auto;
3030
position: relative;
31-
width: 0px;
31+
width: 0;
3232
transform: translateY(-50%);
3333
top: 50%;
3434
border: 6px solid;

0 commit comments

Comments
 (0)