diff --git a/public/css/launcher.css b/public/css/launcher.css index 4b8e474..fc50a7c 100644 --- a/public/css/launcher.css +++ b/public/css/launcher.css @@ -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); +}