Files
2018-10-11 15:13:23 -05:00

16 lines
306 B
JavaScript

{
const getStyles = () => {
const tag = document.createElement('style');
tag.textContent = `
:root {
--ion-font-family: Arial;
}
`;
return tag;
};
if (window.location.search.indexOf('ionic:_testing=true') > -1) {
document.head.appendChild(getStyles());
}
}