mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
set up css resets
This commit is contained in:
parent
6dd435a4d1
commit
8f70ce5b31
10
webapp/assets/_new/styles/resets.scss
Normal file
10
webapp/assets/_new/styles/resets.scss
Normal file
@ -0,0 +1,10 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
button {
|
||||
background: transparent;
|
||||
border: none;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
}
|
||||
@ -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
|
||||
|
||||
@ -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', {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user