not able to use custom classes in @apply in scss file tailwind nextjs project?(不能在SCSS文件顺风nextjs项目中使用@Apply中的自定义类吗?)
本文介绍了不能在SCSS文件顺风nextjs项目中使用@Apply中的自定义类吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用自定义类overflow:inherit
作为tailwind
next.js
项目中的@apply overflow-inherit
,但它引发错误。但是,我可以@apply
像@apply flex flex-col md:h-full h-screen;
这样预先构建顺风类,但不能自定义。
完全回购:https://github1s.com/GorvGoyl/Personal-Site-Gourav.io
trawind.scss:
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
@variants responsive {
.overflow-inherit {
overflow: inherit;
}
}
}
project.module e.scss:
.css {
:global {
.wrapper-outer {
@apply overflow-inherit; //trying to apply custom utility
}
}
}
错误:
wait - compiling...
event - build page: /next/dist/pages/_error
error - ./layouts/css/project.module.scss:4:6
Syntax error: C:Users1gourPersonal-Siteproject.module.scss The `overflow-inherit` class does not exist, but `overflow-hidden` does. If you're sure that `overflow-inherit` exists, make sure that any `@import` statements are being properly processed before Tailwind CSS sees your CSS, as `@apply` can only be used for classes in the same CSS tree.
2 | :global {
3 | .wrapper-outer {
> 4 | @apply overflow-inherit;
| ^
5 | }
6 | }
postcss.config.js:
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
- ";下一步";:";^10.0.7";,
- ";trawincss";:";^2.0.3";,
- ";sass";:";^1.32.8";,
- ";Postcss";:";^8.2.6";,
推荐答案
我在我的Laravel项目中遇到了同样的问题。
我认为postcss
对我来说是不够的。因此,在webpack.mix.js
中,我删除了以下
mix.postCss('resources/css/app.css', 'public/css', [
require('postcss-import'),
require('tailwindcss'),
require('autoprefixer'),
]);
并将其替换为sass
,如下所示
mix.sass("resources/css/app.scss", "public/css").options({
postCss: [
require('postcss-import'),
require('tailwindcss'),
require('autoprefixer'),
], });
现在,我有很多很酷的功能,包括您想要的
我甚至不需要使用@layer
在我的SCSS文件中,我可以组合@apply
和@extend
,它可以工作
.btn-my-theme{
@apply rounded border py-2 px-3 shadow-md hover:shadow-lg;
}
.btn-my-primary{
@extend .btn-my-theme;
@apply text-blue-600 bg-blue-200 hover:bg-blue-100 border-blue-500;
}
.btn-my-secondary{
@extend .btn-my-theme;
@apply text-gray-600 bg-gray-200 hover:bg-gray-100 border-gray-500;
}
这篇关于不能在SCSS文件顺风nextjs项目中使用@Apply中的自定义类吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:不能在SCSS文件顺风nextjs项目中使用@Apply中的自定义类吗?
基础教程推荐
猜你喜欢
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01