17 lines
232 B
CSS
17 lines
232 B
CSS
.message-bot.htmx-added {
|
|
opacity: 0;
|
|
}
|
|
|
|
.message-bot {
|
|
opacity: 1;
|
|
transition: opacity 1s ease-out;
|
|
}
|
|
|
|
.message-user.htmx-added {
|
|
opacity: 0;
|
|
}
|
|
|
|
.message-user {
|
|
opacity: 1;
|
|
transition: opacity 1s ease-out;
|
|
} |