Sahil Kkr
Sahil Kkr

Reputation: 195

Need to over-ride default class using tachyons

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

Upvotes: 0

Views: 706

Answers (1)

Cuong Hoang
Cuong Hoang

Reputation: 578

Use !important

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

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

Upvotes: 0

Related Questions