[feature/frontend] filterable local emoji list (#1385)

This commit is contained in:
f0x52 2023-01-27 09:09:26 +01:00 committed by GitHub
commit 08f8feaec5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 89 additions and 25 deletions

View file

@ -419,11 +419,6 @@ label {
display: flex;
flex-direction: column;
&.scrolling {
max-height: 40rem;
overflow: auto;
}
.header, .entry {
padding: 0.5rem;
}
@ -435,6 +430,17 @@ label {
font-weight: bold;
}
.entries {
display: flex;
flex-direction: column;
&.scrolling {
height: 20rem;
max-height: 20rem;
overflow: auto;
}
}
input[type=checkbox] {
margin-left: 0.5rem;
}