unika-components 1.0.108 → 1.0.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/unika-components.css +36 -36
- package/package.json +1 -1
|
@@ -125,6 +125,42 @@ button.uni-text-component {
|
|
|
125
125
|
background: rgba(0, 0, 0, 0.8);
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
+
.like-button {
|
|
129
|
+
display: flex;
|
|
130
|
+
flex-direction: column;
|
|
131
|
+
align-items: center;
|
|
132
|
+
cursor: pointer;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.icon-heart {
|
|
136
|
+
font-size: 24px;
|
|
137
|
+
color: #e74c3c;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.liked {
|
|
141
|
+
color: #f00; /* 更改颜色以示已赞 */
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.like-count {
|
|
145
|
+
margin-top: 4px;
|
|
146
|
+
font-size: 16px;
|
|
147
|
+
color: #333;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.swiper-warp {
|
|
151
|
+
width: 100%;
|
|
152
|
+
height: 100%;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.swiper-slide-component {
|
|
156
|
+
text-align: center;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.swiper-slide img {
|
|
160
|
+
max-width: 100%;
|
|
161
|
+
max-height: 100%;
|
|
162
|
+
}
|
|
163
|
+
|
|
128
164
|
.ant-input-number {
|
|
129
165
|
box-sizing: border-box;
|
|
130
166
|
margin: 0;
|
|
@@ -164,42 +200,6 @@ button.uni-text-component {
|
|
|
164
200
|
width: 100%;
|
|
165
201
|
height: 100%;
|
|
166
202
|
}
|
|
167
|
-
|
|
168
|
-
.swiper-warp {
|
|
169
|
-
width: 100%;
|
|
170
|
-
height: 100%;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.swiper-slide-component {
|
|
174
|
-
text-align: center;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.swiper-slide img {
|
|
178
|
-
max-width: 100%;
|
|
179
|
-
max-height: 100%;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.like-button {
|
|
183
|
-
display: flex;
|
|
184
|
-
flex-direction: column;
|
|
185
|
-
align-items: center;
|
|
186
|
-
cursor: pointer;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.icon-heart {
|
|
190
|
-
font-size: 24px;
|
|
191
|
-
color: #e74c3c;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.liked {
|
|
195
|
-
color: #f00; /* 更改颜色以示已赞 */
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.like-count {
|
|
199
|
-
margin-top: 4px;
|
|
200
|
-
font-size: 16px;
|
|
201
|
-
color: #333;
|
|
202
|
-
}
|
|
203
203
|
/**
|
|
204
204
|
* Swiper 6.8.4
|
|
205
205
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|