Fix emoji picker off-by-1 error

This commit is contained in:
tusooa 2023-01-06 13:14:38 -05:00
commit 76019d1e03
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
3 changed files with 3 additions and 2 deletions

View file

@ -7,7 +7,7 @@ $emoji-picker-emoji-size: 32px;
.emoji-picker {
width: 25em;
max-width: 100vw;
max-width: calc(100vw - 20px); // popover gives 10px margin from window edge
display: flex;
flex-direction: column;
background-color: $fallback--bg;