a css reset
This commit is contained in:
@ -14,9 +14,10 @@
|
||||
|
||||
@import 'settings/variables';
|
||||
@import 'settings/fonts';
|
||||
// @import 'settings/animations';
|
||||
|
||||
// @import 'generic/reset';
|
||||
@import 'settings/reset';
|
||||
/*= require normalize-css/normalize */
|
||||
|
||||
|
||||
// @import 'elements/';
|
||||
// @import 'objects/';
|
||||
|
11
app/assets/stylesheets/settings/_reset.scss
Normal file
11
app/assets/stylesheets/settings/_reset.scss
Normal file
@ -0,0 +1,11 @@
|
||||
// normalize css is loaded, then these additions:
|
||||
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: inherit;
|
||||
}
|
Reference in New Issue
Block a user