fix: resolve style issues caused by changing the order of CSS imports (#6153)

#### What type of PR is this?

/area ui
/kind bug

#### What this PR does / why we need it:

修复 https://github.com/halo-dev/halo/pull/6152 中因为改动了 css 文件的导入顺序带来的样式问题。

#### Does this PR introduce a user-facing change?

```release-note
None
```
pull/6082/head
Ryan Wang 2024-06-26 19:36:50 +08:00 committed by GitHub
parent 1a0e20b8ab
commit 49c4a917e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
import "@/styles/index.css";
import "@/styles/tailwind.css";
import "@halo-dev/components/dist/style.css";
import "@halo-dev/richtext-editor/dist/style.css"; import "@halo-dev/richtext-editor/dist/style.css";
import "@halo-dev/components/dist/style.css";
import "@/styles/tailwind.css";
import "@/styles/index.css";
import "overlayscrollbars/overlayscrollbars.css"; import "overlayscrollbars/overlayscrollbars.css";