mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 09:34:19 +08:00
16 lines
306 B
JavaScript
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());
|
|
}
|
|
}
|