Fix #130 -- Mark required question fields at checkout (#564)

* Fix #130: Mark required question fields at checkout

* Add legend
This commit is contained in:
Johan von Forstner
2017-07-19 11:02:07 +02:00
committed by Raphael Michel
parent 9c2143effe
commit f8ed21c819
3 changed files with 18 additions and 0 deletions

View File

@@ -33,3 +33,12 @@
@include box-shadow($shadow);
}
}
.required-legend span {
color: $brand-primary;
font-weight: bold;
}
.form-group.required .control-label:after {
content: '*';
color: $brand-primary
}