FIX: Size of emoji in poll options (#13294)

Fixes a regression in 33cb1b
This commit is contained in:
Penar Musaraj 2021-06-04 18:27:25 -04:00 committed by GitHub
parent ee6ff9f1d7
commit 9ebc9541b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,8 +31,8 @@ div.poll {
height: auto;
// Hacky way to stop images without width/height
// from causing abrupt unintended scrolling
&:not([width]),
&:not([height]) {
&:not([width]):not(.emoji),
&:not([height]):not(.emoji) {
width: 200px !important;
height: 200px !important;
object-fit: contain;