This commit is contained in:
Zacharias-Brohn
2026-01-14 22:13:08 +01:00
parent 7663a917da
commit 02fd30924b
2 changed files with 54 additions and 39 deletions
+14
View File
@@ -14,3 +14,17 @@
.chatScrollViewport {
scroll-behavior: smooth;
}
/* Chat list item - cogwheel appears on hover */
.chatListItem {
position: relative;
}
.chatListItem .cogwheel {
opacity: 0;
transition: opacity 0.15s ease-in-out;
}
.chatListItem:hover .cogwheel {
opacity: 1;
}