Skip to content

Commit

Permalink
set text color
Browse files Browse the repository at this point in the history
  • Loading branch information
willemliufdmg committed Aug 14, 2020
1 parent a1b48c1 commit 0e2c737
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/modal/Modal.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
background-color: var(--content-copy);
// IE11
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
color: #{map-deep-get($colors, 'colors', 'neutral', 10)};
background-color: #{map-deep-get($colors, 'colors', 'neutral', 10)};
}
}

Expand Down Expand Up @@ -93,6 +93,13 @@
:last-child {
margin-bottom: 0;
}

color: var(--content-copy);
// IE11
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
color: #{map-deep-get($colors, 'colors', 'neutral', 10)};
}

@media screen and (max-width: map-deep-get($media, 'sizes', 'xs')) {
flex: 1 1 auto;
}
Expand Down

0 comments on commit 0e2c737

Please sign in to comment.