Style:Facts/Form
display: grid;
grid-template-columns: max-content 1fr;
.facts-form-key {
grid-column: span 2;
margin-right: 1rem;
font-weight: bold;
/*to move checkboxes to their label*/
&.inline {
grid-column: span 1;
+.facts-form-value {
grid-column: span 1;
}
}
}
.facts-form-value {
grid-column: span 2;
margin-bottom: .5rem;
margin-left: .5rem;
display: flex;
gap: 1rem;
}
.facts-form-input {
flex-basis: content;
}
.facts-form-note {
font-size: 80%;
color: #555;
}