app.less
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@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;
}
.input-placeholder, .textarea-placeholder {
color: #9ca3af;
}
.bg-orange-400 {
background-color: #fb923c;
}
.no-more-text {
font-size: 24rpx;
color: #999;
position: relative;
&::before,
&::after {
content: '';
position: absolute;
top: 50%;
width: 60rpx;
height: 1rpx;
background: #ddd;
}
&::before {
left: -80rpx;
}
&::after {
right: -80rpx;
}
}