mirror of
https://github.com/umap-project/umap.git
synced 2025-04-29 11:52:38 +02:00
chore: add margin left to radio buttons
This commit is contained in:
parent
e5259b3ffe
commit
02dd29a55f
2 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
--border-radius: 4px;
|
||||
--box-padding: 20px;
|
||||
--box-margin: 14px;
|
||||
--text-margin: 7px;
|
||||
}
|
||||
.dark {
|
||||
--background-color: var(--color-darkGray);
|
||||
|
|
Loading…
Reference in a new issue