Need to over-ride default class using tachyons

621 views Asked by At

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

developer-tools pic

1

There are 1 answers

2
Cuong Hoang On

Use !important

.ml3 {
  margin-left: 1rem !important;
}

.mr3 {
  margin-right: 1rem !important;
}