mirror of https://github.com/halo-dev/halo
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
parent
1a0e20b8ab
commit
49c4a917e1
|
@ -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/components/dist/style.css";
|
||||
|
||||
import "@/styles/tailwind.css";
|
||||
|
||||
import "@/styles/index.css";
|
||||
|
||||
import "overlayscrollbars/overlayscrollbars.css";
|
||||
|
|
Loading…
Reference in New Issue