This commit is contained in:
sky 2024-09-26 23:07:02 -04:00
parent a1b20a46e2
commit b28238130b

View File

@ -615,12 +615,13 @@ div.played-game img {
#chat { #chat {
width: 90%; width: 90%;
background-color: var(--uibg); background-color: var(--uibg);
height: 85vh; height: calc(100vh - (var(--margin) * 2) - 60px - 24px - 24px - 30px);
} }
#messages { #messages {
align-items: end; align-items: end;
flex-direction: column; flex-direction: column;
overflow: scroll; overflow-y: scroll;
overflow-x: hidden;
height: 90%; height: 90%;
display: flex; display: flex;
} }
@ -631,6 +632,12 @@ message {
background-color: var(--inputbg); background-color: var(--inputbg);
border-radius: 10px; border-radius: 10px;
} }
message h1 {
font-size: 40px;
}
message h2 {
font-size: 32px;
}
message.user { message.user {
background-color: var(--inputborder); background-color: var(--inputborder);
} }