änerung der chatbuttons

This commit is contained in:
Cay 2026-03-12 09:38:55 +00:00
parent 107d658244
commit 81b685a331

View File

@ -146,3 +146,35 @@
overflow-y: auto;
}
.chat-channels {
display: flex;
gap: 4px;
padding: 4px;
}
.chat-channels button {
background: linear-gradient(#6b4a25, #3a2512);
border: 1px solid #caa46a;
color: #f3e6c5;
font-family: serif;
font-size: 13px;
padding: 3px 8px;
cursor: pointer;
transition: all 0.15s ease;
}
.chat-channels button:hover {
background: linear-gradient(#8a6235, #4a3018);
border-color: #ffd27a;
box-shadow: 0 0 6px rgba(255, 210, 120, 0.6);
}