Automated Release v1.0.1
Please find changes in CHANGELOG.md file
This commit is contained in:
parent
86b15a4d6e
commit
6a5f269560
|
@ -16,7 +16,7 @@ library.add(faEye, faFilePdf)
|
|||
dom.watch()
|
||||
|
||||
$('#radio-language-fr').addEventListener('click', async event => {
|
||||
window.location.href = '/index'
|
||||
window.location.href = `${process.env.PUBLIC_URL === '/' ? '' : process.env.PUBLIC_URL}/index.html`
|
||||
})
|
||||
|
||||
const generateQR = async text => {
|
||||
|
|
|
@ -16,7 +16,7 @@ library.add(faEye, faFilePdf)
|
|||
dom.watch()
|
||||
|
||||
$('#radio-language-en').addEventListener('click', async event => {
|
||||
window.location.href = '/index-en'
|
||||
window.location.href = `${process.env.PUBLIC_URL === '/' ? '' : process.env.PUBLIC_URL}/index-en.html`
|
||||
})
|
||||
|
||||
const generateQR = async text => {
|
||||
|
|
|
@ -47,11 +47,12 @@ svg {
|
|||
}
|
||||
|
||||
ul.flex-justify {
|
||||
display: flex;
|
||||
display: -webkit-flex; /* Safari */
|
||||
-webkit-align-items: center; /* Safari 7.0+ */
|
||||
justify-content:space-between;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
h1.flex.flex-wrap {
|
||||
display: flex;
|
||||
|
|
Loading…
Reference in New Issue