Skip to content

Commit

Permalink
updating the custom loading history border props
Browse files Browse the repository at this point in the history
  • Loading branch information
OvidijusParsiunas committed Dec 21, 2024
1 parent debc844 commit 04e05cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion component/src/utils/loading/loadingStyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ export class LoadingStyle {
bubbleElement.style.setProperty('--loading-history-height', height || '57px');
bubbleElement.style.setProperty('--loading-history-width', width || '57px');
bubbleElement.style.setProperty('--loading-history-margin', margin || '7px');
bubbleElement.style.setProperty('--loading-history-border', border || '6px');
bubbleElement.style.setProperty('--loading-history-border', border || '6px solid');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
width: var(--loading-history-width);
height: var(--loading-history-height);
margin: var(--loading-history-margin);
border: var(--loading-history-border) solid;
border: var(--loading-history-border);
border-radius: 50%;
animation: loading-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
border-color: var(--loading-history-color) transparent transparent transparent;
Expand Down

0 comments on commit 04e05cd

Please sign in to comment.