# Reset and normalize
blick.config({
reset: "*,::after,::before{box-sizing:border-box;..."
})
This is just a string that is added to the beginning of the styles, it is used to normalize and reset the default browser styles. Since it is just a string, you can write any custom styles you want.
blick.config({
reset: null
})
Set it to falsy so that it is not added to the style to disable it.
blick.config({
reset: null,
root: null,
wrapper: null,
autoFlex: null
})
Add these parameters to the config so that only the styles you write are generated, so that there are no unnecessary things.