英文:
How to import custom CSS in Sanity Studio v3
问题
我想在Sanity Studio V3中进行一些小的CSS修改。
以前用于导入CSS的旧方法不再有效。
我该如何操作?
英文:
I would like to make a small CSS modification in Sanity Studio V3.
The old method to import CSS no longer works.
How can I do it?
答案1
得分: 2
这很简单,但文档中没有说明。
创建你的CSS文件。
在文件 sanity.config.ts
中,按如下方式导入你的文件:
import "./custom.css";
并测试是否能够使用一个简单的CSS语句:
* {
color: red !important;
}
如果所有文本都变成红色,说明你的导入工作正常。
英文:
It is very simple but it's not in the doc.
Create your css file.
In the file sanity.config.ts
, import your file as follows :
import "./custom.css";
And test whether it works with a simple CSS statement :
* {
color: red !important;
}
If all the text is red, it means that your import works
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论