Skip to content

Commit

Permalink
Hourglass - fix style border in js and export new version to bit.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshK2 committed Oct 30, 2019
1 parent 29de42d commit 74db586
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bitmap
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"origin": "AUTHORED",
"exported": true
},
"joshk.react-spinners-css/hourglass@1.1.4": {
"joshk.react-spinners-css/hourglass@1.1.5": {
"files": [
{
"relativePath": "src/components/Hourglass/index.js",
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/Hourglass/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function Hourglass({ color, size, className, style }) {
<div className={`lds-hourglass ${className}`} style={{ ...style }}>
<div
className="lds-hourglass-after"
style={{ background: color, 'border-width': size, 'border-height': size }}
style={{ background: color, borderWidth: size, borderHeight: size }}
></div>
</div>
)
Expand Down

0 comments on commit 74db586

Please sign in to comment.