UX: add space between links and text in labels (#11674)

This commit is contained in:
Kris
2021-01-11 13:35:41 -05:00
committed by GitHub
parent 422f395042
commit 2f84ab6e0a

View File

@@ -132,6 +132,11 @@ label {
align-self: center;
margin-right: 4px;
}
a {
// flex removes whitespace characters between text nodes and elements
// so we need to add it back
margin: 0 0.25em;
}
}
input {