From 83ee650d96542103093fd642bdf6c613cbf62f7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 5 Jan 2023 18:44:01 -0500 Subject: [PATCH] allow core style override by theme --- src/meta/css.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/meta/css.js b/src/meta/css.js index 9bcb78ea38..8d87f920ba 100644 --- a/src/meta/css.js +++ b/src/meta/css.js @@ -34,7 +34,6 @@ const buildImports = { source, '@import "jquery-ui";', '@import "cropperjs/dist/cropper";', - '@import "client";', ].join('\n'); }, admin: function (source) { @@ -117,6 +116,8 @@ function boostrapImport(themeData) { // Utilities '@import "bootstrap/scss/utilities/api";', // scss-docs-end import-stack + + '@import "client";', '@import "./theme";', // rest of the theme scss bootswatchSkin ? `@import "bootswatch/dist/${bootswatchSkin}/bootswatch";` : '', ].join('\n');