diff --git a/extension/sidepanel.css b/extension/sidepanel.css index 54b652e8..2c69c73c 100644 --- a/extension/sidepanel.css +++ b/extension/sidepanel.css @@ -158,6 +158,28 @@ body::after { flex-direction: column; gap: 8px; } +.chat-loading { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100%; + text-align: center; + color: var(--text-meta); + gap: 12px; + font-size: 13px; +} +.chat-loading-spinner { + width: 24px; + height: 24px; + border: 2px solid var(--border); + border-top-color: var(--amber-500); + border-radius: 50%; + animation: spin 0.8s linear infinite; +} +@keyframes spin { + to { transform: rotate(360deg); } +} .chat-welcome { display: flex; flex-direction: column; diff --git a/extension/sidepanel.html b/extension/sidepanel.html index fff42a18..5267ae24 100644 --- a/extension/sidepanel.html +++ b/extension/sidepanel.html @@ -17,7 +17,11 @@
-
+
+
+

Connecting...

+
+