chore: add margin left to radio buttons

This commit is contained in:
Yohan Boniface 2024-06-21 18:03:02 +02:00
parent e5259b3ffe
commit 02dd29a55f
2 changed files with 5 additions and 1 deletions

View file

@ -185,8 +185,11 @@ input[type="range"] {
margin-bottom: 5px;
width: 100%;
}
input[type="radio"] {
margin-right: var(--text-margin);
}
input[type="checkbox"] {
margin: 0 5px;
margin: 0 var(--text-margin);
vertical-align: middle;
appearance: none;
}

View file

@ -35,6 +35,7 @@
--border-radius: 4px;
--box-padding: 20px;
--box-margin: 14px;
--text-margin: 7px;
}
.dark {
--background-color: var(--color-darkGray);