Properly align label and radio input in the stats window (#3977)

* Properly align label and radio input in the stats window

* use margin-inline-end instead of margin-right to support RTL
This commit is contained in:
GithubAnon0000 2025-05-05 08:10:58 +00:00 committed by GitHub
parent d1bb69aaec
commit dcc6000f70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,6 +112,15 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<div class="range-box-pad"></div>
<style lang="scss">
label {
display: inline-flex;
align-items: center;
}
input[type="radio"] {
margin-inline-end: 0.3em;
}
.range-box {
position: sticky;
z-index: 1;