Make sure the label style for input text and radios match

This commit is contained in:
luis cielak 2018-08-08 13:54:10 -04:00
parent 4e587c67a4
commit bd58da642b
2 changed files with 5 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class RequestForm(ValidatedForm):
) )
engineering_assessment = RadioField( engineering_assessment = RadioField(
description="Have you completed an engineering assessment of your software systems for cloud readiness?", "Have you completed an engineering assessment of your software systems for cloud readiness?",
choices=[("yes", "Yes"), ("no", "No"), ("in_progress", "In Progress")], choices=[("yes", "Yes"), ("no", "No"), ("in_progress", "In Progress")],
) )

View File

@ -100,6 +100,10 @@
padding: 0 0 $gap 0; padding: 0 0 $gap 0;
@include h4; @include h4;
label {
font-weight: $font-bold;
}
.icon { .icon {
vertical-align: middle; vertical-align: middle;
} }