@chlp-tech/rpa-ui 0.0.6 → 0.0.7
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.
|
@@ -103,7 +103,7 @@ var MediaCardList = function MediaCardList(props) {
|
|
|
103
103
|
src: mediaIcon[item.media],
|
|
104
104
|
preview: false,
|
|
105
105
|
width: 24
|
|
106
|
-
}), /*#__PURE__*/React.createElement("div", {
|
|
106
|
+
}), item.count && /*#__PURE__*/React.createElement("div", {
|
|
107
107
|
className: styles["media-round"]
|
|
108
108
|
}, item.count)));
|
|
109
109
|
}));
|
|
@@ -149,6 +149,7 @@ var ReleaseVideoCard = function ReleaseVideoCard(props) {
|
|
|
149
149
|
}, /*#__PURE__*/React.createElement(TextEllipsis, {
|
|
150
150
|
lines: 1
|
|
151
151
|
}, "\u6807\u9898\uFF1A", props.title || '- -')), /*#__PURE__*/React.createElement("div", {
|
|
152
|
+
className: styles['card_content'],
|
|
152
153
|
style: {
|
|
153
154
|
height: 55
|
|
154
155
|
}
|
|
@@ -190,7 +191,7 @@ var ReleaseVideoCard = function ReleaseVideoCard(props) {
|
|
|
190
191
|
})), /*#__PURE__*/React.createElement("div", {
|
|
191
192
|
className: styles['right-wrap']
|
|
192
193
|
}, /*#__PURE__*/React.createElement(Space, {
|
|
193
|
-
size:
|
|
194
|
+
size: 16,
|
|
194
195
|
style: {
|
|
195
196
|
marginRight: 12,
|
|
196
197
|
cursor: 'pointer'
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
}
|
|
40
40
|
&__block {
|
|
41
41
|
display: flex;
|
|
42
|
-
justify-content: space-between;
|
|
43
42
|
align-items: center;
|
|
44
43
|
font-weight: 400;
|
|
45
44
|
font-size: 12px;
|
|
@@ -133,6 +132,7 @@
|
|
|
133
132
|
.center {
|
|
134
133
|
display: flex;
|
|
135
134
|
align-items: center;
|
|
135
|
+
flex: 1;
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
.desc_wrap {
|
|
@@ -234,3 +234,9 @@
|
|
|
234
234
|
text-align: center;
|
|
235
235
|
color: #FFFFFF;
|
|
236
236
|
}
|
|
237
|
+
|
|
238
|
+
.card_content {
|
|
239
|
+
font-size: 14px;
|
|
240
|
+
color: #142A51;
|
|
241
|
+
font-weight: 400;
|
|
242
|
+
}
|