Files
MauMau-Client/src/styles/layout/components/chat.scss
DTieman 4959e197bb
Some checks failed
Build Mau & Deploy Mau / build (push) Failing after 1m23s
Build Mau & Deploy Mau / deploy (push) Has been skipped
Mostly design update +
- Chat cleaning
- Player hand size visibility
2024-04-21 16:28:55 +02:00

28 lines
419 B
SCSS

.chat {
&__list {
overflow-y: hidden;
word-wrap: break-word;
list-style-type: none;
padding: 0;
margin: 1rem 0;
&:hover {
overflow-y: scroll;
}
}
&-form {
display: flex;
flex-direction: column;
&__input {
background-color: #2e2e2e;
border: none;
color: #fff;
font-size: 1rem;
padding: 0.5rem;
border-radius: 0.5rem;
}
}
}