Merge pull request #124 from dunn/emote-grid

emotes: display in grid instead of one per line
This commit is contained in:
Nick 2020-06-08 11:00:07 -04:00 committed by GitHub
commit 523f648379
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -111,16 +111,17 @@ input[type=text] {
}
#emotesbody {
color: var(--var-message-color);
color: var(--var-message-color);
}
.emotedef {
display: flex;
flex-direction: row;
float: left;
padding: 5px 5px 15px 5px;
}
.emotedef div {
padding: 5px;
.emotedef img {
height: 112px;
width: 112px;
}
.notice {