Merge pull request #10397 from desktop/radio-button-alignment

Fix label alignment in radio-button component styles
This commit is contained in:
Rafael Oleza 2020-08-17 19:20:15 +02:00 committed by GitHub
commit 6fcf9c45ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,16 @@
.radio-button-component {
display: flex;
align-items: center;
& + .radio-button-component {
margin-top: var(--spacing-half);
}
label {
& > input {
margin: 0;
}
& > label {
margin: 0;
margin-left: var(--spacing-half);
}