Skip to content

Commit

Permalink
fix: change color for sameAltitudinalZone message
Browse files Browse the repository at this point in the history
  • Loading branch information
friedjoff committed Apr 16, 2020
1 parent 55c8d51 commit 0ab74e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Recommendation.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function Recommendation({ sameAltitudinalZone }) {
</Grid>
)}
{sameAltitudinalZone && (
<Message color="yellow">
<Message className={styles.sameAltitudinalZone}>
{t('recommendation.sameAltitudinalZone')}
</Message>
)}
Expand Down
4 changes: 4 additions & 0 deletions src/components/Recommendation.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
color: #fbf0b2;
}

.sameAltitudinalZone:global(.ui.message) {
color: var(--primary-color-500);
}

@media (max-width: 768px) {
.list {
display: grid;
Expand Down

0 comments on commit 0ab74e3

Please sign in to comment.