Search code examples
cssgatsby

adding global stylesheet gatsby


I created a gastby site using their doc

and would like to add some global style (without a layout component) as per this doc.

I'd like to add this to my current repository which is essentially the starter kit.

I've created the global.css

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
}

and the gatsby-browser.js files

import "./src/styles/global.css"

but no changes are reflected.

What am i missing?


Solution

  • I've cloned your repo and I see all the styles applied. In fact, I've added a background-color: red to the body tag and I'm still seeing it:

    Working CSS styles

    Run gatsby clean to ensure that you are not seeing any cached version.