Replies: 1 comment
-
Tailwind indeed does override the
Here is the Tailwind Play showcase, however I can't display option 3 there , because it requires changes in tsconfig.json |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
I have a class defined in my css file like
.fp-icon-small::before {
display: inline-block;
font-family: fp-icons-small !important;
font-style: normal;
font-weight: normal !important;
font-variant: normal;
text-transform: none;
line-height: 1;
font-size: 16px;
vertical-align: text-bottom;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.fp-icon-test::before {
content: '';
}
they are being used like <i className=''fp-icon-small fp-icon-test"/> I want to increase the font size by adding a class before:text-xl however my icon never displays again and I think its because adding before:text-xl removed the existing ::before content.
any idea how to achieve it without interferring with existing style properties?
thanks
Beta Was this translation helpful? Give feedback.
All reactions