Closed reselbob closed 3 years ago
I want to do something simple, for example change the black heading backcolor from black to white.
I looks like the place to make the change is here:
function myFunction() { var x = document.getElementById('navbar'); if (x.className === 'topnav') { x.className += ' responsive'; } else { x.className = 'topnav'; } }
In this file, https://github.com/hasura/gatsby-gitbook-starter/blob/master/src/components/Header.js
But I can't figure out where the style topnav is defined. Maybe I am missing something. If so, please excuse my oversight.
topnav
Any help will be greatly appreciated.
Found the answer, https://github.com/hasura/gatsby-gitbook-starter/blob/master/src/components/styles/GlobalStyles.js
Figured it out
I want to do something simple, for example change the black heading backcolor from black to white.
I looks like the place to make the change is here:
In this file, https://github.com/hasura/gatsby-gitbook-starter/blob/master/src/components/Header.js
But I can't figure out where the style
topnav
is defined. Maybe I am missing something. If so, please excuse my oversight.Any help will be greatly appreciated.