You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
427 B
HTML

<div class="w-fit bg-osiblue bg-opacity-70 px-3 py-2 rounded-l-3xl rounded-tr-3xl text-white shadow-md text-sm leading-7 fade-in-up">
<p class="break-all">{{chat_message.content}}</p>
</div>
<style>
@keyframes fadeInAndUp {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0px); }
}
.fade-in-up {
animation: fadeInAndUp 0.6s ease;
}
</style>