Skip to content

Commit

Permalink
fix(privacy): fix privacy link colors
Browse files Browse the repository at this point in the history
Fix privacy link colors.
  • Loading branch information
bstavroulakis committed May 1, 2018
1 parent a5277c1 commit cc5d8b8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/js/components/modals/UserFormModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ class UserFormModal extends mixin(StoreMixin) {
<p className="form-control-feedback">
By adding a user you understand we will process personal information in accordance with our
{" "}
<a href="https://mesosphere.com/privacy/" target="_blank">
<a
className="small inverse unset-display"
href="https://mesosphere.com/privacy/"
target="_blank"
>
Privacy Policy
</a>
</p>
Expand Down
4 changes: 4 additions & 0 deletions src/styles/layout/alignment-utilities/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@
flex-direction: column;
width: 100%;
}

.unset-display {
display: unset;
}

0 comments on commit cc5d8b8

Please sign in to comment.