mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
User Settings Page: Link to privacy policy (#3561)
This commit is contained in:
parent
b56c620007
commit
7ae666a274
1
changes/issue-2859-privacy-policy-link
Normal file
1
changes/issue-2859-privacy-policy-link
Normal file
@ -0,0 +1 @@
|
||||
* App links users to Fleet's privacy policy
|
@ -402,6 +402,15 @@ export class UserSettingsPage extends Component {
|
||||
<span
|
||||
className={`${baseClass}__version`}
|
||||
>{`Fleet ${version.version} • Go ${version.go_version}`}</span>
|
||||
<span className={`${baseClass}__privacy-policy`}>
|
||||
<a
|
||||
href="https://fleetdm.com/legal/privacy"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Privacy policy
|
||||
</a>
|
||||
</span>
|
||||
</div>
|
||||
{renderEmailModal()}
|
||||
{renderPasswordModal()}
|
||||
|
@ -153,7 +153,20 @@
|
||||
font-size: $xx-small;
|
||||
text-align: center;
|
||||
display: block;
|
||||
margin-top: $pad-xxlarge;
|
||||
margin-top: $pad-large;
|
||||
}
|
||||
|
||||
&__privacy-policy {
|
||||
text-align: center;
|
||||
display: block;
|
||||
margin-top: $pad-xlarge;
|
||||
|
||||
a {
|
||||
font-size: $x-small;
|
||||
color: $core-vibrant-blue;
|
||||
font-weight: $bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
.grey-cell {
|
||||
|
Loading…
Reference in New Issue
Block a user