添加全局样式表 gatsby
adding global stylesheet gatsby
我使用 their doc
创建了一个 gastby 网站
并希望根据 this doc.
添加一些全局样式(没有布局组件)
我想将其添加到 my current repository,它本质上是入门工具包。
我创建了 global.css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
}
和 gatsby-browser.js 文件
import "./src/styles/global.css"
但未反映任何更改。
我错过了什么?
我已经克隆了您的存储库,并且看到应用了所有样式。事实上,我已经在 body
标签中添加了一个 background-color: red
,我仍然看到它:
运行 gatsby clean
以确保您没有看到任何缓存版本。
我使用 their doc
创建了一个 gastby 网站并希望根据 this doc.
添加一些全局样式(没有布局组件)我想将其添加到 my current repository,它本质上是入门工具包。
我创建了 global.css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
}
和 gatsby-browser.js 文件
import "./src/styles/global.css"
但未反映任何更改。
我错过了什么?
我已经克隆了您的存储库,并且看到应用了所有样式。事实上,我已经在 body
标签中添加了一个 background-color: red
,我仍然看到它:
运行 gatsby clean
以确保您没有看到任何缓存版本。