Skip to content

Commit

Permalink
Fixing a className and some whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
daveyholler committed Mar 22, 2019
1 parent 0bfdce5 commit cf28ba7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/loading/_loading_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@
&:last-child:not(:only-child) {
width: 75%;
}

}

.euiLoadingContent__singleLine--background {
.euiLoadingContent__singleLineBackground {
width: 220%;
height: 100%;
background: linear-gradient(
Expand Down
2 changes: 1 addition & 1 deletion src/components/loading/loading_content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const EuiLoadingContent: FunctionComponent<
for (let i = 0; i < lines; i++) {
lineElements.push(
<div key={i} className="euiLoadingContent__singleLine">
<div className="euiLoadingContent__singleLine--background" />
<div className="euiLoadingContent__singleLineBackground" />
</div>
);
}
Expand Down

0 comments on commit cf28ba7

Please sign in to comment.