untymage's avatar

Tailwindcss - Disable part of base component

We can disable all preflights by doing preflight: false in config file, But i wanna only disable the part that said h1-h6 should inherit from the body element :

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

If its not possible ok, How do i disable inheritance of element in class="" ?

0 likes
1 reply
bugsysha's avatar

The point of TailwindCSS is that you should be explicit. So where you have h1 define which size it should be. Also, add leading and tracking if required.

1 like

Please or to participate in this conversation.