s-material-react 1.3.4 → 1.3.5
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/css/pages/goodsDetail.scss +56 -58
- package/package.json +2 -2
|
@@ -242,81 +242,79 @@
|
|
|
242
242
|
.goodsDetail-coupon-popup {
|
|
243
243
|
padding: 14px 14px 0;
|
|
244
244
|
|
|
245
|
-
|
|
246
|
-
|
|
247
245
|
.stamp {
|
|
246
|
+
width: 100%;
|
|
247
|
+
display: inline-block;
|
|
248
|
+
padding: 10px;
|
|
249
|
+
position: relative;
|
|
250
|
+
background: radial-gradient(transparent 0px, transparent 4px, #1a1922 4px, #1a1922) -10px -10px;
|
|
251
|
+
background-size: 20px 20px;
|
|
252
|
+
margin-bottom: 14px;
|
|
253
|
+
|
|
254
|
+
&:after {
|
|
255
|
+
content: '';
|
|
256
|
+
position: absolute;
|
|
257
|
+
left: 5px;
|
|
258
|
+
top: 5px;
|
|
259
|
+
right: 5px;
|
|
260
|
+
bottom: 5px;
|
|
261
|
+
//box-shadow: 0 0 20px 1px rgba(0, 0, 0, 1);
|
|
262
|
+
z-index: -1;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.stamp-content {
|
|
266
|
+
height: 120px;
|
|
248
267
|
width: 100%;
|
|
249
|
-
|
|
250
|
-
|
|
268
|
+
background: #1a1922;
|
|
269
|
+
display: grid;
|
|
270
|
+
grid-template-columns: 108px 1fr;
|
|
251
271
|
position: relative;
|
|
252
|
-
background: radial-gradient(transparent 0px, transparent 4px, #1a1922 4px, #1a1922) -10px -10px;
|
|
253
|
-
background-size: 20px 20px;
|
|
254
|
-
margin-bottom: 14px;
|
|
255
272
|
|
|
256
|
-
|
|
257
|
-
content: '';
|
|
273
|
+
.choose {
|
|
258
274
|
position: absolute;
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
z-index: -1;
|
|
275
|
+
top: 10px;
|
|
276
|
+
right: 10px;
|
|
277
|
+
background: #fff;
|
|
278
|
+
border-radius: 100%;
|
|
279
|
+
overflow: hidden;
|
|
265
280
|
}
|
|
266
281
|
|
|
267
|
-
.
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
display: grid;
|
|
272
|
-
grid-template-columns: 108px 1fr;
|
|
273
|
-
position: relative;
|
|
282
|
+
.price {
|
|
283
|
+
border-right: 1px dashed #fff;
|
|
284
|
+
text-align: center;
|
|
285
|
+
line-height: 120px;
|
|
274
286
|
|
|
275
|
-
.
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
right: 10px;
|
|
279
|
-
background: #fff;
|
|
280
|
-
border-radius: 100%;
|
|
281
|
-
overflow: hidden;
|
|
287
|
+
.symbol {
|
|
288
|
+
font-size: 23px;
|
|
289
|
+
color: #fff;
|
|
282
290
|
}
|
|
283
291
|
|
|
284
|
-
.
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
.symbol {
|
|
290
|
-
font-size: 23px;
|
|
291
|
-
color: #fff;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
.num {
|
|
295
|
-
font-size: 33px;
|
|
296
|
-
color: #fff;
|
|
297
|
-
text-align: left;
|
|
298
|
-
}
|
|
292
|
+
.num {
|
|
293
|
+
font-size: 33px;
|
|
294
|
+
color: #fff;
|
|
295
|
+
text-align: left;
|
|
299
296
|
}
|
|
297
|
+
}
|
|
300
298
|
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
299
|
+
.info {
|
|
300
|
+
display: flex;
|
|
301
|
+
justify-content: center;
|
|
302
|
+
align-items: center;
|
|
303
|
+
flex-direction: column;
|
|
306
304
|
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
305
|
+
.title {
|
|
306
|
+
margin-bottom: 12px;
|
|
307
|
+
font-size: 16px;
|
|
308
|
+
color: #fff;
|
|
309
|
+
line-height: 22px;
|
|
310
|
+
}
|
|
313
311
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
}
|
|
312
|
+
.date {
|
|
313
|
+
color: rgba(255, 255, 255, 0.45);
|
|
317
314
|
}
|
|
318
315
|
}
|
|
319
316
|
}
|
|
317
|
+
}
|
|
320
318
|
|
|
321
319
|
.confirm {
|
|
322
320
|
width: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "s-material-react",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"description": "'组件库'",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"author": "",
|
|
28
28
|
"license": "ISC",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@brushes/simulate-component": "^0.1.
|
|
30
|
+
"@brushes/simulate-component": "^0.1.14",
|
|
31
31
|
"@brushes/utils": "^0.0.14",
|
|
32
32
|
"@stencil/core": "^3.2.0",
|
|
33
33
|
"china-division": "^2.6.0",
|