From 04e05cd8642b21da8d467a65db508d871dc8f1d0 Mon Sep 17 00:00:00 2001 From: Ovidijus Parsiunas Date: Sat, 21 Dec 2024 17:54:12 +0900 Subject: [PATCH] updating the custom loading history border props --- component/src/utils/loading/loadingStyle.ts | 2 +- component/src/views/chat/messages/history/loadingHistory.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/component/src/utils/loading/loadingStyle.ts b/component/src/utils/loading/loadingStyle.ts index ea850fe54..67d7024dc 100644 --- a/component/src/utils/loading/loadingStyle.ts +++ b/component/src/utils/loading/loadingStyle.ts @@ -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'); } } diff --git a/component/src/views/chat/messages/history/loadingHistory.css b/component/src/views/chat/messages/history/loadingHistory.css index aa8527cf8..438eed8ca 100644 --- a/component/src/views/chat/messages/history/loadingHistory.css +++ b/component/src/views/chat/messages/history/loadingHistory.css @@ -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;