From 95c7527c75fa7f164b48c5320f8b064767132960 Mon Sep 17 00:00:00 2001 From: Sunner Sun Date: Fri, 23 Jun 2023 09:17:22 +0800 Subject: [PATCH] fix: too much padding of code --- src/theme.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) => {