Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4bd6e8c580 |
@@ -620,14 +620,14 @@ const styles = theme => ({
|
||||
fontSize: '1.250em',
|
||||
fontWeight: '600',
|
||||
position: 'absolute',
|
||||
top: '7px',
|
||||
left: '45px',
|
||||
right: '10px',
|
||||
top: '30px',
|
||||
left: '30px',
|
||||
right: '30px',
|
||||
color: '#fff',
|
||||
textAlign:'left',
|
||||
lineHeight : '20px',
|
||||
marginBottom : '20px',
|
||||
padding:'10px'
|
||||
|
||||
},
|
||||
containerPoste:{
|
||||
|
||||
|
||||
@@ -55,16 +55,24 @@ const useStyles = makeStyles(theme => ({
|
||||
}
|
||||
},
|
||||
FacebookIconMobile: {
|
||||
color: theme.palette.social.facebook,
|
||||
color: theme.palette.social.facebook,
|
||||
paddingRight:'0px',
|
||||
paddingLeft:'3px'
|
||||
},
|
||||
TwitterIconMobile: {
|
||||
color: theme.palette.social.twitter,
|
||||
paddingRight:'3px' ,
|
||||
paddingLeft:'3px'
|
||||
},
|
||||
LinkedinIconMobile: {
|
||||
color: theme.palette.social.linkedin,
|
||||
paddingRight:'3px',
|
||||
paddingLeft:'3px'
|
||||
},
|
||||
MailIconMobile: {
|
||||
color: theme.palette.social.mail,
|
||||
paddingRight:'3px' ,
|
||||
paddingLeft:'3px'
|
||||
},
|
||||
}));
|
||||
|
||||
|
||||
@@ -62,8 +62,8 @@ const styles = theme => ({
|
||||
},
|
||||
button: {
|
||||
textTransform: 'inherit',
|
||||
marginLeft: theme.spacing(8),
|
||||
marginRight: theme.spacing(8),
|
||||
marginLeft: theme.spacing(4.5),
|
||||
marginRight: theme.spacing(4.5),
|
||||
padding: theme.spacing(1.2, 2),
|
||||
color: theme.palette.secondary.main,
|
||||
backgroundColor: theme.palette.primary.important,
|
||||
|
||||
@@ -55,7 +55,7 @@ module.exports = withPlugins(
|
||||
blogUrl: 'https://blog.talentstube.com',
|
||||
frontServerUrl: 'https://pp.app.talentstube.com/',
|
||||
cvThequeUrl: 'https://recruteur.talentstube.com',
|
||||
version : 'V2.3.5',
|
||||
version : 'V2.3.6',
|
||||
adListDefaultUrl: '/statique/images/default/default_picture_company.svg',
|
||||
cachedMediaUrl: '/media/cache/profile_thumb/uploads/img/',
|
||||
postedContentUrl: '/uploads/img/',
|
||||
|
||||
+2
-2
@@ -175,9 +175,9 @@ app.prepare()
|
||||
app.render(req, res, actualPage, queryParams)
|
||||
})
|
||||
|
||||
server.get('/ConfirmAccount/:token/:email/:url', (req, res) => {
|
||||
server.get('/ConfirmAccount/:token/:email', (req, res) => {
|
||||
const actualPage = '/ConfirmAccount'
|
||||
const queryParams = { token: req.params.token, email: req.params.email, url: req.params.url }
|
||||
const queryParams = { token: req.params.token, email: req.params.email }
|
||||
app.render(req, res, actualPage, queryParams)
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user