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

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

This commit is contained in:
Sergio Betanzos 2021-04-22 19:33:10 +02:00 committed by GitHub
parent 29947011f2
commit d2adc7d4e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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/'
}