diff options
author | ThibG <thib@sitedethib.com> | 2019-09-16 16:12:18 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-09-16 16:12:18 +0200 |
commit | d41494226dbe9f3c3cf3b98a376d47b8c836c948 (patch) | |
tree | 9f96c99b43113d0662d64d2e49cf717d8685e7f5 | |
parent | f1098675782944fe1dabec71cd58d3d091da06a0 (diff) |
Fix poll options checkboxes/radio buttons not being vertically centered (#11833)
-rw-r--r-- | app/javascript/styles/mastodon/polls.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/polls.scss b/app/javascript/styles/mastodon/polls.scss index 8b131dffd..e80220f27 100644 --- a/app/javascript/styles/mastodon/polls.scss +++ b/app/javascript/styles/mastodon/polls.scss @@ -79,6 +79,9 @@ top: -1px; border-radius: 50%; vertical-align: middle; + margin-top: auto; + margin-bottom: auto; + flex: 0 0 18px; &.checkbox { border-radius: 4px; |