diff --git a/src/theme.js b/src/theme.js index 71e62142f9..19cc6b2565 100644 --- a/src/theme.js +++ b/src/theme.js @@ -40,14 +40,14 @@ export const applyTheme = (theme, vuetifyTheme) => { document .querySelectorAll(`style#${MARKDOWN_STYLE_ID}, style#${HIGHLIGHT_STYLE_ID}`) .forEach((e) => e.remove()); // remove previous style - addStyle( - MARKDOWN_STYLE_ID, - theme === Theme.DARK ? markdownDark : markdownLight, - ); addStyle( HIGHLIGHT_STYLE_ID, theme === Theme.DARK ? highlightDark : highlightLight, ); + addStyle( + MARKDOWN_STYLE_ID, + theme === Theme.DARK ? markdownDark : markdownLight, + ); }; const addStyle = (id, css) => {