s-material-react 1.3.19 → 1.3.21
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/basic/textLine.scss +10 -10
- package/css/common/addressItem.scss +74 -74
- package/css/common/card.scss +42 -42
- package/css/common/coupon.scss +82 -82
- package/css/common/evaluateItem.scss +51 -51
- package/css/common/icon.scss +59 -59
- package/css/common/noData.scss +27 -27
- package/css/common/rateItem.scss +35 -35
- package/css/common/stepNum.scss +16 -16
- package/css/pages/addressDetail.scss +59 -59
- package/css/pages/addressList.scss +43 -41
- package/css/pages/cart.scss +161 -161
- package/css/pages/classifyNav.scss +15 -15
- package/css/pages/couponList.scss +198 -197
- package/css/pages/cube.scss +49 -49
- package/css/pages/evaluateDetail.scss +57 -57
- package/css/pages/evaluateEntry.scss +52 -52
- package/css/pages/evaluateList.scss +22 -22
- package/css/pages/goods.scss +79 -79
- package/css/pages/goodsClassify.scss +129 -109
- package/css/pages/goodsDetail.scss +380 -380
- package/css/pages/goodsDetailTopInfo.scss +40 -40
- package/css/pages/goodsList.scss +62 -63
- package/css/pages/index.scss +6 -3
- package/css/pages/mine.scss +72 -72
- package/css/pages/mineData.scss +48 -0
- package/css/pages/mineFunction.scss +35 -0
- package/css/pages/mineOrderEntry.scss +46 -0
- package/css/pages/order-goodsItem.scss +12 -12
- package/css/pages/orderDetail.scss +123 -123
- package/css/pages/orderEntry.scss +36 -36
- package/css/pages/orderList.scss +60 -60
- package/css/pages/paymentMode.scss +62 -61
- package/css/pages/placeOrder.scss +130 -130
- package/css/pages/placeOrderResult.scss +81 -81
- package/css/pages/searchPage.scss +65 -65
- package/css/pages/service.scss +2 -2
- package/css/pages/slider.scss +15 -15
- package/css/pages/title.scss +1 -1
- package/dist/common/scrollWrap/index.d.ts +1 -2
- package/dist/components/AddressDetail/index.d.ts +11 -1
- package/dist/components/AddressList/index.d.ts +10 -2
- package/dist/components/CouponList/components/couponItem.d.ts +9 -0
- package/dist/components/CouponList/components/index.d.ts +1 -3
- package/dist/components/CouponList/index.d.ts +8 -1
- package/dist/components/EvaluateDetail/index.d.ts +9 -2
- package/dist/components/GoodsClassify/components/classifyFloor.d.ts +1 -0
- package/dist/components/MineData/index.d.ts +8 -0
- package/dist/components/MineFunction/index.d.ts +1 -0
- package/dist/components/MineOrderEntry/index.d.ts +1 -0
- package/dist/components/OrderDetail/component/footer.d.ts +4 -0
- package/dist/components/OrderDetail/index.d.ts +13 -1
- package/dist/components/PaymentMode/index.d.ts +10 -2
- package/dist/components/PlaceOrder/components/operate.d.ts +4 -0
- package/dist/components/PlaceOrder/components/shop.d.ts +2 -1
- package/dist/components/PlaceOrder/index.d.ts +7 -0
- package/dist/components/PlaceOrderResult/index.d.ts +17 -2
- package/dist/components/SearchPage/index.d.ts +4 -1
- package/dist/components/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/dist/components/CouponList/components/overdue.d.ts +0 -5
- package/dist/components/CouponList/components/unUsed.d.ts +0 -5
- package/dist/components/CouponList/components/used.d.ts +0 -5
|
@@ -1,57 +1,57 @@
|
|
|
1
1
|
.evaluateEntry {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
.topInfo {
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
margin-bottom: 20px;
|
|
6
|
+
|
|
7
|
+
.title {
|
|
8
|
+
font-size: 14px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.txt {
|
|
12
|
+
font-size: 12px;
|
|
13
|
+
color: #999;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.evaluateList-item {
|
|
18
|
+
color: #333333;
|
|
19
|
+
padding-bottom: 20px;
|
|
20
|
+
|
|
21
|
+
.userInfo {
|
|
22
|
+
display: grid;
|
|
23
|
+
grid-template-columns: 48px auto;
|
|
24
|
+
margin-bottom: 12px;
|
|
25
|
+
|
|
26
|
+
.avatar {
|
|
27
|
+
width: 38px;
|
|
28
|
+
height: 38px;
|
|
29
|
+
display: inline-block;
|
|
30
|
+
margin-right: 10px;
|
|
31
|
+
border-radius: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.userName {
|
|
35
|
+
line-height: 38px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.size {
|
|
40
|
+
font-size: 12px;
|
|
41
|
+
margin-bottom: 4px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.content {
|
|
45
|
+
font-size: 14px;
|
|
15
46
|
}
|
|
16
47
|
|
|
17
|
-
.
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
margin-bottom: 12px;
|
|
25
|
-
|
|
26
|
-
.avatar {
|
|
27
|
-
width: 38px;
|
|
28
|
-
height: 38px;
|
|
29
|
-
display: inline-block;
|
|
30
|
-
margin-right: 10px;
|
|
31
|
-
border-radius: 100%;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.userName {
|
|
35
|
-
line-height: 38px;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.size {
|
|
40
|
-
font-size: 12px;
|
|
41
|
-
margin-bottom: 4px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.content {
|
|
45
|
-
font-size: 14px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.img-group {
|
|
49
|
-
display: grid;
|
|
50
|
-
grid-template-columns: repeat(4, auto);
|
|
51
|
-
.img {
|
|
52
|
-
display: block;
|
|
53
|
-
border-radius: 4px;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
48
|
+
.img-group {
|
|
49
|
+
display: grid;
|
|
50
|
+
grid-template-columns: repeat(4, auto);
|
|
51
|
+
.img {
|
|
52
|
+
display: block;
|
|
53
|
+
border-radius: 4px;
|
|
54
|
+
}
|
|
56
55
|
}
|
|
56
|
+
}
|
|
57
57
|
}
|
|
@@ -57,32 +57,32 @@
|
|
|
57
57
|
//}
|
|
58
58
|
|
|
59
59
|
.evaluateListTab {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
60
|
+
background-color: #fff;
|
|
61
|
+
padding: 20px 10px;
|
|
62
|
+
display: grid;
|
|
63
|
+
grid-template-columns: repeat(4, 1fr);
|
|
64
|
+
gap: 9px;
|
|
65
65
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
66
|
+
.evaluateListTabItem {
|
|
67
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
68
|
+
border-radius: 15px;
|
|
69
|
+
color: #0b0b0b;
|
|
70
|
+
height: 24px;
|
|
71
|
+
line-height: 24px;
|
|
72
|
+
text-align: center;
|
|
73
|
+
box-sizing: border-box;
|
|
74
|
+
border: 1px solid #fff;
|
|
75
75
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
76
|
+
&.active {
|
|
77
|
+
border: 1px solid #000;
|
|
79
78
|
}
|
|
79
|
+
}
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
.evaluateListContent {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
83
|
+
border-top: 10px solid #f6f6f6;
|
|
84
|
+
border-left: 10px solid #f6f6f6;
|
|
85
|
+
border-right: 10px solid #f6f6f6;
|
|
86
|
+
box-sizing: border-box;
|
|
87
|
+
background-color: #f6f6f6;
|
|
88
88
|
}
|
package/css/pages/goods.scss
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
1
|
@import '../basic/textLine';
|
|
2
2
|
|
|
3
3
|
.goods {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
4
|
+
background: #fff;
|
|
5
|
+
|
|
6
|
+
.goods-img {
|
|
7
|
+
width: 100%;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
background-size: cover;
|
|
10
|
+
background-repeat: no-repeat;
|
|
11
|
+
background-position: center center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.space {
|
|
15
|
+
margin-top: 10px;
|
|
16
|
+
padding: 8px;
|
|
17
|
+
position: relative;
|
|
18
|
+
|
|
19
|
+
.anticon {
|
|
20
|
+
position: absolute;
|
|
21
|
+
right: 10px;
|
|
22
|
+
bottom: 10px;
|
|
12
23
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
.
|
|
33
|
-
|
|
34
|
-
color: #888;
|
|
35
|
-
}
|
|
36
|
-
.sales {
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.price {
|
|
40
|
-
font-size: 20px;
|
|
41
|
-
color: #f00;
|
|
42
|
-
|
|
43
|
-
.subPrice {
|
|
44
|
-
font-size: 14px;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.markedPrice {
|
|
49
|
-
padding-left: 8px;
|
|
50
|
-
font-size: 12px;
|
|
51
|
-
color: #888;
|
|
52
|
-
text-decoration: line-through;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.titleType {
|
|
27
|
+
font-size: 16px;
|
|
28
|
+
margin-bottom: 4px;
|
|
29
|
+
@include titleLine(2);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.subTitle {
|
|
33
|
+
font-size: 12px;
|
|
34
|
+
color: #888;
|
|
35
|
+
}
|
|
36
|
+
.sales {
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.price {
|
|
40
|
+
font-size: 20px;
|
|
41
|
+
color: #f00;
|
|
42
|
+
|
|
43
|
+
.subPrice {
|
|
44
|
+
font-size: 14px;
|
|
53
45
|
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.markedPrice {
|
|
49
|
+
padding-left: 8px;
|
|
50
|
+
font-size: 12px;
|
|
51
|
+
color: #888;
|
|
52
|
+
text-decoration: line-through;
|
|
53
|
+
}
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.goods-one {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
.goods-img {
|
|
58
|
+
height: 310px;
|
|
59
|
+
}
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
.goods-two {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
63
|
+
.subTitle {
|
|
64
|
+
margin-bottom: 5px;
|
|
65
|
+
}
|
|
66
|
+
.sales {
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.goods-img {
|
|
70
|
+
height: 200px;
|
|
71
|
+
}
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.goods-three {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
75
|
+
.goods {
|
|
76
|
+
position: relative;
|
|
77
|
+
display: grid;
|
|
78
|
+
grid-template-columns: 1fr 200px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.goods-img {
|
|
82
|
+
height: 150px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.space {
|
|
86
|
+
margin-top: 0;
|
|
87
|
+
padding: 18px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.price {
|
|
91
|
+
position: absolute;
|
|
92
|
+
bottom: 10px;
|
|
93
|
+
}
|
|
94
94
|
}
|
|
@@ -1,134 +1,154 @@
|
|
|
1
1
|
.goods-classify {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
2
|
+
padding: 10px;
|
|
3
|
+
|
|
4
|
+
.goods-classify-search {
|
|
5
|
+
width: 100%;
|
|
6
|
+
margin-bottom: 17px;
|
|
7
|
+
height: 34px;
|
|
8
|
+
background-color: #f4f4f4;
|
|
9
|
+
border-radius: 20px;
|
|
10
|
+
text-align: center;
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
|
|
15
|
+
.icon {
|
|
16
|
+
width: 14px;
|
|
17
|
+
height: 14px;
|
|
18
|
+
margin-right: 5px;
|
|
20
19
|
}
|
|
20
|
+
}
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.goodsClassifyContainer {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
.side {
|
|
31
|
-
|
|
32
|
-
--adm-color-primary: #000000;
|
|
33
|
-
}
|
|
24
|
+
background-color: #ffffff;
|
|
25
|
+
display: grid;
|
|
26
|
+
grid-template-columns: 90px 1fr;
|
|
27
|
+
width: 100%;
|
|
28
|
+
height: 100%;
|
|
29
|
+
.side {
|
|
30
|
+
.adm-side-bar-item-active {
|
|
31
|
+
--adm-color-primary: #000000;
|
|
34
32
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
33
|
+
.typeBlock {
|
|
34
|
+
.adm-side-bar-item-highlight {
|
|
35
|
+
display: none;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
.typeNoBlock {
|
|
39
|
+
.adm-side-bar-item-highlight {
|
|
40
|
+
display: block;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.main {
|
|
46
|
+
.content {
|
|
47
|
+
height: 100%;
|
|
48
|
+
display: none;
|
|
49
|
+
color: #cccccc;
|
|
50
|
+
|
|
51
|
+
&.active {
|
|
52
|
+
display: block;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.classifyFloor {
|
|
56
|
+
.titleWrap {
|
|
57
|
+
width: 60%;
|
|
58
|
+
//background: greenyellow;
|
|
59
|
+
margin: 0 auto;
|
|
60
|
+
text-align: center;
|
|
61
|
+
position: relative;
|
|
62
|
+
box-sizing: border-box;
|
|
63
|
+
|
|
64
|
+
.title {
|
|
65
|
+
color: #333;
|
|
66
|
+
font-size: 14px;
|
|
67
|
+
background-color: #fff;
|
|
68
|
+
height: 40px;
|
|
69
|
+
line-height: 40px;
|
|
70
|
+
display: inline-block;
|
|
71
|
+
padding: 0 10px;
|
|
72
|
+
position: relative;
|
|
73
|
+
z-index: 1;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.line {
|
|
77
|
+
position: absolute;
|
|
78
|
+
width: 100%;
|
|
79
|
+
height: 1px;
|
|
80
|
+
background-color: #000;
|
|
81
|
+
left: 0;
|
|
82
|
+
top: 50%;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
.container_columns1 {
|
|
86
|
+
grid-template-columns: repeat(1, 1fr);
|
|
87
|
+
}
|
|
88
|
+
.container_columns2 {
|
|
89
|
+
grid-template-columns: repeat(2, 1fr);
|
|
90
|
+
}
|
|
91
|
+
.container_columns3 {
|
|
92
|
+
grid-template-columns: repeat(3, 1fr);
|
|
93
|
+
}
|
|
94
|
+
.container_columns4 {
|
|
95
|
+
grid-template-columns: repeat(4, 1fr);
|
|
96
|
+
}
|
|
97
|
+
.container {
|
|
98
|
+
display: grid;
|
|
99
|
+
gap: 10px;
|
|
100
|
+
padding: 0 10px;
|
|
101
|
+
box-sizing: border-box;
|
|
102
|
+
|
|
103
|
+
.classifyFloorGoodsItem {
|
|
104
|
+
.logo {
|
|
105
|
+
width: 70px;
|
|
106
|
+
height: 70px;
|
|
107
|
+
display: block;
|
|
108
|
+
margin-bottom: 12px;
|
|
109
|
+
margin: 0 auto;
|
|
44
110
|
}
|
|
45
111
|
|
|
46
|
-
.
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
margin: 0 auto;
|
|
52
|
-
padding: 20px 0;
|
|
53
|
-
text-align: center;
|
|
54
|
-
position: relative;
|
|
55
|
-
|
|
56
|
-
.title {
|
|
57
|
-
color: #333;
|
|
58
|
-
font-size: 14px;
|
|
59
|
-
background-color: #fff;
|
|
60
|
-
height: 20px;
|
|
61
|
-
display: inline-block;
|
|
62
|
-
padding: 0 10px;
|
|
63
|
-
position: relative;
|
|
64
|
-
z-index: 1;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.line {
|
|
68
|
-
position: absolute;
|
|
69
|
-
width: 100%;
|
|
70
|
-
height: 1px;
|
|
71
|
-
background-color: #000;
|
|
72
|
-
left: 0;
|
|
73
|
-
top: 50%;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.container {
|
|
78
|
-
display: grid;
|
|
79
|
-
grid-template-columns: repeat(3, 1fr);
|
|
80
|
-
gap: 10px;
|
|
81
|
-
padding: 0 10px;
|
|
82
|
-
box-sizing: border-box;
|
|
83
|
-
|
|
84
|
-
.classifyFloorGoodsItem {
|
|
85
|
-
.logo {
|
|
86
|
-
width: 70px;
|
|
87
|
-
height: 70px;
|
|
88
|
-
display: block;
|
|
89
|
-
margin-bottom: 12px;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.title {
|
|
93
|
-
font-size: 12px;
|
|
94
|
-
text-align: center;
|
|
95
|
-
display: block;
|
|
96
|
-
color: #272727;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
112
|
+
.title {
|
|
113
|
+
font-size: 12px;
|
|
114
|
+
text-align: center;
|
|
115
|
+
display: block;
|
|
116
|
+
color: #272727;
|
|
100
117
|
}
|
|
118
|
+
}
|
|
101
119
|
}
|
|
120
|
+
}
|
|
102
121
|
}
|
|
122
|
+
}
|
|
103
123
|
}
|
|
104
124
|
|
|
105
125
|
.adm-side-bar {
|
|
106
|
-
|
|
107
|
-
|
|
126
|
+
--adm-color-box: #f5f5f5;
|
|
127
|
+
--item-border-radius: 8px;
|
|
108
128
|
}
|
|
109
129
|
|
|
110
130
|
.adm-side-bar-item {
|
|
111
|
-
|
|
131
|
+
font-size: 12px;
|
|
112
132
|
}
|
|
113
133
|
|
|
114
134
|
.adm-side-bar-item-active {
|
|
115
|
-
|
|
116
|
-
|
|
135
|
+
--adm-color-primary: #1677ff;
|
|
136
|
+
--adm-color-background: #fff;
|
|
117
137
|
}
|
|
118
138
|
|
|
119
139
|
.classifySkeleton {
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
}
|
|
140
|
+
display: grid;
|
|
141
|
+
grid-template-columns: 88px 1fr;
|
|
142
|
+
|
|
143
|
+
.lPart {
|
|
144
|
+
border-right: 1px solid #ccc;
|
|
145
|
+
height: 100%;
|
|
146
|
+
|
|
147
|
+
.blc {
|
|
148
|
+
--width: 90%;
|
|
149
|
+
--height: 50px;
|
|
150
|
+
--border-radius: 0px;
|
|
151
|
+
margin: 0 auto 10px;
|
|
133
152
|
}
|
|
153
|
+
}
|
|
134
154
|
}
|