Reputation: 195
I am using tachyons and I am not able to override default css using tachyons. I am avoiding custom css I am pasting developer tools pic, which would have code too
Upvotes: 0
Views: 706
Reputation: 578
Use !important
.ml3 {
margin-left: 1rem !important;
}
.mr3 {
margin-right: 1rem !important;
}
Upvotes: 0