diff --git a/frontend/src/app/chat/chat.css b/frontend/src/app/chat/chat.css index 731a71e..bb7cb64 100644 --- a/frontend/src/app/chat/chat.css +++ b/frontend/src/app/chat/chat.css @@ -1,5 +1,6 @@ -@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap'); - +:host { + min-width: 100%; +} .custom-scrollbar::-webkit-scrollbar { width: 6px; } @@ -36,17 +37,35 @@ } @keyframes typing { - 0%, 80%, 100% { transform: scale(0); opacity: 0.3; } - 40% { transform: scale(1); opacity: 1; } + 0%, + 80%, + 100% { + transform: scale(0); + opacity: 0.3; + } + 40% { + transform: scale(1); + opacity: 1; + } } @keyframes pulse { - 0% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.4); } - 70% { box-shadow: 0 0 0 10px rgba(79, 172, 254, 0); } - 100% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0); } + 0% { + box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.4); + } + 70% { + box-shadow: 0 0 0 10px rgba(79, 172, 254, 0); + } + 100% { + box-shadow: 0 0 0 0 rgba(79, 172, 254, 0); + } } @keyframes fadeIn { - from { opacity: 0; } - to { opacity: 1; } + from { + opacity: 0; + } + to { + opacity: 1; + } } diff --git a/frontend/src/app/chat/chat.html b/frontend/src/app/chat/chat.html index fac9fd8..2e84880 100644 --- a/frontend/src/app/chat/chat.html +++ b/frontend/src/app/chat/chat.html @@ -1,39 +1,52 @@ -