app.less 729 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;

/* 修复 NutUI 图标字体样式 */
.nut-icon {
  font-style: normal !important;
  font-weight: normal !important;
}

/* 修复所有可能的图标字体 */
[class*="nut-icon"] {
  font-style: normal !important;
  font-weight: normal !important;
}

.nut-textarea {
  padding: 20rpx 30rpx !important;
}

button {
    margin: 0;
    padding: 0;
    background-color: inherit;
    position: static;
}

button:after {
    content: none;
}
button::after {
    border: none;
}

.bottom-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 24rpx 32rpx;
    border-top: 1rpx solid #f3f4f6;
    z-index: 100;
}