We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
When adding a font (https://tailwindcss.com/docs/font-family#customizing-your-theme), would it be relevant to add in the documentation @import "./fonts" layer(base); ?
@import "./fonts" layer(base);
Which would give:
@import 'tailwindcss'; @import "./fonts" layer(base);
Or the following lines are enough ?
@import 'tailwindcss'; @import './fonts.css';
This had been indicated on https://tailwindcss.com/blog/2023-07-18-tailwind-connect-2023-recap.
Which would allow a separation of files and to still be able to see @import xxx layer(xxx); in another place in the documentation.
@import xxx layer(xxx);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When adding a font (https://tailwindcss.com/docs/font-family#customizing-your-theme), would it be relevant to add in the documentation
@import "./fonts" layer(base);
?Which would give:
Or the following lines are enough ?
This had been indicated on https://tailwindcss.com/blog/2023-07-18-tailwind-connect-2023-recap.
Which would allow a separation of files and to still be able to see
@import xxx layer(xxx);
in another place in the documentation.The text was updated successfully, but these errors were encountered: