Skip to content

Commit

Permalink
fix: use correct font size for info text
Browse files Browse the repository at this point in the history
  • Loading branch information
friedjoff committed Sep 2, 2020
1 parent c6194e6 commit 93cb0bb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/InfoRecommendation.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { ReactComponent as NeutralIcon } from '../icons/recommendationNeutral.sv
import { ReactComponent as PositiveIcon } from '../icons/recommendationPositive.svg';

import styles from './InfoRecommendation.module.css';
import recommendationStyles from './Recommendation.module.css';

function InfoRecommendation() {
return (
Expand All @@ -20,13 +19,13 @@ function InfoRecommendation() {
<strong>recommendation</strong> description
</p>
<ul className={styles.iconList}>
<li className={recommendationStyles.large}>
<li>
<PositiveIcon /> positive
</li>
<li>
<NeutralIcon /> neutral
</li>
<li className={recommendationStyles.small}>
<li>
<NegativeIcon /> negative
</li>
<li>
Expand Down

0 comments on commit 93cb0bb

Please sign in to comment.