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()
|
dom.watch()
|
||||||
|
|
||||||
$('#radio-language-fr').addEventListener('click', async event => {
|
$('#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 => {
|
const generateQR = async text => {
|
||||||
|
|
|
@ -16,7 +16,7 @@ library.add(faEye, faFilePdf)
|
||||||
dom.watch()
|
dom.watch()
|
||||||
|
|
||||||
$('#radio-language-en').addEventListener('click', async event => {
|
$('#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 => {
|
const generateQR = async text => {
|
||||||
|
|
|
@ -47,7 +47,8 @@ svg {
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.flex-justify {
|
ul.flex-justify {
|
||||||
display: flex;
|
display: -webkit-flex; /* Safari */
|
||||||
|
-webkit-align-items: center; /* Safari 7.0+ */
|
||||||
justify-content:space-between;
|
justify-content:space-between;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
Loading…
Reference in New Issue