Deleting all browser default styles for an element.
instead of using all these
button{
backgound:none
border:none
color: inherit
font:inherit
outline:non
padding:0
}
use:
button{
all:unset
}
It will unset all your element styles.
reactonme.hashnode.dev1 min read