-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start applying basic bulma styling #22
Comments
* Refactor stylesheet files and directories * `src/styles/main.scss` * main stylesheet that composes index * `src/layouts/index.scss` * simply imports `main.scss` * `src/layouts/template-wrapper.scss` * seperated from index to contain... ...only relevant templatewrapper stuff * `src/styles/bulma.scss` * The composer for all bulma ui styles * index layout now only imports main and templatewrapper
From Posting my solution to this for others: Install gatsby-plugin-sass (see here) |
There's a potential solution here gatsbyjs/gatsby#2354 |
After commit e7103c1, bulma has been applied to the index.scss file and thus the root react node and it shows with better typography by default. When it comes to customizing and properly importing the stylesheet from the node_modules in outside components things get a bit more complicated. Try following some of these suggestions to solve this problem. |
* Bulma has been included * src/styles/bulma-composed: * for now, the place where composition of bulma styles occurs * imports all bulma modules * customizes specific styles to my preferences * Sidebar is now testing bulma columns * TemplateWrapper is now including it so it should be globally... ...applied to bulma's element defaults.
Bulma has been integrated in 3c670a4 . There are some basic redefinitions of variables, particularly color within the |
Now that bulma has been applied, start applying some initial styling using its SASS classes.
The text was updated successfully, but these errors were encountered: