1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

M #~: Fix fireedge footer text (#1125)

(cherry picked from commit d2adc7d4e2f2062e4624e11d9e3509487aa7790a)
This commit is contained in:
Sergio Betanzos 2021-04-22 19:33:10 +02:00 committed by Ruben S. Montero
parent 50bdb4ad89
commit c708278936
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87
3 changed files with 3 additions and 5 deletions

View File

@ -15,7 +15,6 @@ const Footer = memo(() => {
<span className={classes.heartIcon} role="img" aria-label="heart-emoji">
{'❤️'}
</span>
{'by'}
<Link href={BY.url} className={classes.link}>
{BY.text}
</Link>

View File

@ -14,11 +14,10 @@ export default makeStyles(theme => ({
padding: 5
},
heartIcon: {
margin: theme.spacing(0, 1),
margin: '0 0.5em',
color: theme.palette.error.dark
},
link: {
color: theme.palette.primary.contrastText,
marginLeft: theme.spacing(1)
color: theme.palette.primary.contrastText
}
}))

View File

@ -19,7 +19,7 @@ import * as Setting from 'client/constants/setting'
export const JWT_NAME = 'FireedgeToken'
export const BY = {
text: 'OpenNebula',
text: 'by OpenNebula',
url: 'https://opennebula.io/'
}