forked from gxwebsoft/mp-10550
```
refactor(tailwind.config.js): 禁用部分Tailwind CSS类以解决微信小程序兼容性问题 为了解决微信小程序中的兼容性问题,禁用了以下Tailwind CSS类: - `gap`:微信小程序不支持 gap 属性- `lineClamp`:微信小程序不支持 line-clamp 类 - `textIndent`:禁用 text-indent - `writingMode`:禁用 writing-mode - `hyphens`:禁用 hyphens ```
This commit is contained in:
@@ -92,3 +92,12 @@ button[open-type="chooseAvatar"] {
|
||||
image {
|
||||
margin: 0; /* 全局设置图片的 margin */
|
||||
}
|
||||
|
||||
/* 管理员面板功能项交互效果 */
|
||||
.admin-feature-item {
|
||||
transition: transform 0.15s ease-in-out;
|
||||
}
|
||||
|
||||
.admin-feature-item:active {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user