diff --git a/webapp/assets/_new/styles/resets.scss b/webapp/assets/_new/styles/resets.scss new file mode 100644 index 000000000..edc495821 --- /dev/null +++ b/webapp/assets/_new/styles/resets.scss @@ -0,0 +1,10 @@ +* { + box-sizing: border-box; +} + +button { + background: transparent; + border: none; + font-family: inherit; + font-size: inherit; +} diff --git a/webapp/nuxt.config.js b/webapp/nuxt.config.js index 16329cf59..f42661f71 100644 --- a/webapp/nuxt.config.js +++ b/webapp/nuxt.config.js @@ -94,7 +94,10 @@ export default { /* ** Global CSS */ - css: ['~assets/styles/main.scss'], + css: [ + '~assets/_new/styles/resets.scss', + '~assets/styles/main.scss', + ], /* ** Global processed styles diff --git a/webapp/storybook/config.js b/webapp/storybook/config.js index 2631285e1..5b91dfdf3 100644 --- a/webapp/storybook/config.js +++ b/webapp/storybook/config.js @@ -2,6 +2,7 @@ import { addParameters, configure } from '@storybook/vue' import Vue from 'vue' import Vuex from 'vuex' import { action } from '@storybook/addon-actions' +import '!style-loader!css-loader!sass-loader!../assets/_new/styles/resets.scss' Vue.use(Vuex) Vue.component('nuxt-link', {