Merge pull request #7451 from KDSBrowne/02-style-feedback-legend

Add style to feedback legend label
This commit is contained in:
Anton Georgiev 2019-05-16 09:40:22 -04:00 committed by GitHub
commit 3a1d5900a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class Rating extends Component {
return (
<div className={styles.starRating}>
<fieldset>
<legend>{intl.formatMessage(intlMessages.legendTitle)}</legend>
<legend className={styles.legend}>{intl.formatMessage(intlMessages.legendTitle)}</legend>
{
_.range(num)
.map(i => [

View File

@ -59,3 +59,8 @@
}
}
}
.legend {
font-family: Arial, sans-serif;
font-weight: normal;
}