N°4283 - Improve spacing of HTML inputs with their labels

This commit is contained in:
Molkobain
2021-11-19 18:35:50 +01:00
parent 2f114701a1
commit 9444e61856
5 changed files with 16 additions and 13 deletions

View File

@@ -86,4 +86,11 @@ a{
&:active{
color: var(--ibo-hyperlink-color--on-active);
}
}
/* Input reset */
/* - Standard spacing between label and input */
select + label, label + select, label > select,
input + label, label + input, label > input {
margin-left: 0.5rem;
}