Delete message feature

This commit is contained in:
jeffser
2024-05-23 19:06:50 -06:00
parent 46b43ca670
commit db0daa1f41
2 changed files with 22 additions and 7 deletions

View File

@@ -19,3 +19,10 @@
.chat_row:hover button {
opacity: 1;
}
.message .delete-message-button {
opacity: 0;
transition: opacity .05s;
}
.message:hover .delete-message-button {
opacity: 1;
}