@titaui/pc 1.15.28-beta.1 → 1.15.28-beta.4

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.
Files changed (36) hide show
  1. package/lib/components/dynamic/dynamic-item/components/summary-header/index.css +8 -0
  2. package/lib/components/dynamic/dynamic-item/components/summary-header/index.js +75 -6
  3. package/lib/components/dynamic/dynamic-item/dynamic-new-report/index.js +5 -1
  4. package/lib/components/dynamic/dynamic-item/dynamic-report/index.js +5 -1
  5. package/lib/components/dynamic/dynamic-item/index.js +4 -2
  6. package/lib/components/expiration-reminder/img/close.png +0 -0
  7. package/lib/components/expiration-reminder/img/close.svg +16 -0
  8. package/lib/components/expiration-reminder/img/emoji.svg +16 -0
  9. package/lib/components/expiration-reminder/img/qrcode-official.png +0 -0
  10. package/lib/components/expiration-reminder/img/qrcode-trial.png +0 -0
  11. package/lib/components/expiration-reminder/img/reminder.png +0 -0
  12. package/lib/components/expiration-reminder/index.css +112 -0
  13. package/lib/components/expiration-reminder/index.js +304 -0
  14. package/lib/components/expiration-reminder/utils.js +58 -0
  15. package/lib/components/mirroring/index.css +67 -0
  16. package/lib/components/mirroring/index.js +39 -0
  17. package/lib/components/nav-top/components/app-center/images/quick.svg +30 -0
  18. package/lib/components/nav-top/components/app-center/index.css +29 -0
  19. package/lib/components/nav-top/components/app-center/index.js +94 -3
  20. package/lib/components/nav-top/components/user-own-menu/components/own-menu/index.js +12 -1
  21. package/lib/components/okr-detail/components/okr-tree/tree-node/e-kr-node/index.js +14 -7
  22. package/lib/components/quick-entrance/img/canceled.svg +15 -0
  23. package/lib/components/quick-entrance/img/drag-icon.svg +18 -0
  24. package/lib/components/quick-entrance/img/ork.svg +20 -0
  25. package/lib/components/quick-entrance/img/performance.svg +20 -0
  26. package/lib/components/quick-entrance/img/project.svg +21 -0
  27. package/lib/components/quick-entrance/index.css +172 -0
  28. package/lib/components/quick-entrance/index.js +317 -0
  29. package/lib/components/quick-entrance/render-item.js +36 -0
  30. package/lib/components/quick-entrance/request-api.js +22 -0
  31. package/lib/components/task-relation-modal/index.js +24 -14
  32. package/lib/components/task-relation-modal/relation-single-okr/index.css +77 -0
  33. package/lib/components/task-relation-modal/relation-single-okr/index.js +183 -0
  34. package/lib/components/task-relation-modal/request-api.js +9 -1
  35. package/lib/index.js +8 -0
  36. package/package.json +3 -1
@@ -33,6 +33,13 @@
33
33
  background: #f0f4fa;
34
34
  }
35
35
 
36
+ .titaui-dynamic-new-summary-header-segmentation {
37
+ background: linear-gradient(180deg, #FFFFFF 0%, #DFE3EA 53%, #FFFFFF 100%);
38
+ width: 1px;
39
+ height: 18px;
40
+ margin: 0 8px;
41
+ }
42
+
36
43
  .titaui-dynamic-new-summary-header-desc {
37
44
  flex: 1;
38
45
  margin-left: 12px;
@@ -75,6 +82,7 @@
75
82
  color: #89919f;
76
83
  line-height: 18px;
77
84
  margin-top: 4px;
85
+ display: flex;
78
86
  }
79
87
 
80
88
  .titaui-dynamic-new-summary-header-desc-avatar {
@@ -49,6 +49,14 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
49
49
 
50
50
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
51
51
 
52
+ function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
53
+
54
+ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
55
+
56
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
57
+
58
+ function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
59
+
52
60
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
53
61
 
54
62
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
@@ -74,6 +82,12 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
74
82
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
75
83
 
76
84
  var prefix = 'titaui-dynamic-new-summary-header';
85
+ var type = {
86
+ 2: (0, _getLocale.getLocale)('Rep_Text_CompanyPrivacy'),
87
+ 3: (0, _getLocale.getLocale)('Rep_NewS_Departonly'),
88
+ 1: (0, _getLocale.getLocale)('OKR_MyO_Pop_Public'),
89
+ 5: (0, _getLocale.getLocale)('OKR_MyO_Pop_Specified')
90
+ };
77
91
 
78
92
  var DynamicItemHeader = function DynamicItemHeader(_ref) {
79
93
  var _ref$onDeleteFeed = _ref.onDeleteFeed,
@@ -102,7 +116,11 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
102
116
  isCollect = _data$isCollect === void 0 ? false : _data$isCollect,
103
117
  dailyContent = data.dailyContent,
104
118
  dailyDate = data.dailyDate,
105
- reportType = data.reportType;
119
+ reportType = data.reportType,
120
+ summaryVisible = data.summaryVisible,
121
+ visibilityScope = data.visibilityScope,
122
+ publishUser = data.publishUser;
123
+ console.log('data', data);
106
124
 
107
125
  var _useState = (0, _react.useState)(isCollect),
108
126
  _useState2 = _slicedToArray(_useState, 2),
@@ -134,6 +152,29 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
134
152
  operateVisible = _useState12[0],
135
153
  setOperateVisible = _useState12[1];
136
154
 
155
+ var _useState13 = (0, _react.useState)(''),
156
+ _useState14 = _slicedToArray(_useState13, 2),
157
+ str = _useState14[0],
158
+ setStr = _useState14[1];
159
+
160
+ var _ref2 = visibilityScope || {},
161
+ _ref2$departments = _ref2.departments,
162
+ departments = _ref2$departments === void 0 ? [] : _ref2$departments,
163
+ _ref2$groups = _ref2.groups,
164
+ groups = _ref2$groups === void 0 ? [] : _ref2$groups,
165
+ _ref2$users = _ref2.users,
166
+ users = _ref2$users === void 0 ? [] : _ref2$users;
167
+
168
+ var _ref3 = publishUser || {},
169
+ departmentName = _ref3.departmentName,
170
+ departmentId = _ref3.departmentId;
171
+
172
+ var typeTootips = {
173
+ 2: (0, _getLocale.getLocale)('Rep_NewS_RefeSummary'),
174
+ 3: /*#__PURE__*/_react["default"].createElement("span", null, (0, _getLocale.getLocale)('Per_Ass_New_Appr_detail_Affiliat'), (0, _getLocale.getLocale)('OKR_MyO_Text_Visible')),
175
+ 1: /*#__PURE__*/_react["default"].createElement("span", null, (0, _getLocale.getLocale)('OKR_MyO_Pop_Company'), (0, _getLocale.getLocale)('Rep_Tab_Subor_EveryoneSee')),
176
+ 5: str
177
+ };
137
178
  var url = '';
138
179
  var loginUserId = (0, _bsGlobal.getUserInfo)().Id;
139
180
 
@@ -192,7 +233,7 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
192
233
  };
193
234
 
194
235
  var enSureDeleteDynamic = /*#__PURE__*/function () {
195
- var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
236
+ var _ref4 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
196
237
  return _regeneratorRuntime().wrap(function _callee$(_context) {
197
238
  while (1) {
198
239
  switch (_context.prev = _context.next) {
@@ -220,7 +261,7 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
220
261
  }));
221
262
 
222
263
  return function enSureDeleteDynamic() {
223
- return _ref2.apply(this, arguments);
264
+ return _ref4.apply(this, arguments);
224
265
  };
225
266
  }();
226
267
 
@@ -246,7 +287,7 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
246
287
  };
247
288
 
248
289
  var handleCloseEvaluateDialog = /*#__PURE__*/function () {
249
- var _ref3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(params) {
290
+ var _ref5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(params) {
250
291
  var _user;
251
292
 
252
293
  return _regeneratorRuntime().wrap(function _callee2$(_context2) {
@@ -279,7 +320,7 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
279
320
  }));
280
321
 
281
322
  return function handleCloseEvaluateDialog(_x) {
282
- return _ref3.apply(this, arguments);
323
+ return _ref5.apply(this, arguments);
283
324
  };
284
325
  }();
285
326
 
@@ -299,6 +340,25 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
299
340
  onClick: enSureDeleteDynamic
300
341
  }, (0, _getLocale.getLocale)('Mod_Delete')));
301
342
  }, [showDialogConfirm]);
343
+ var renderSegmentation = (0, _react.useMemo)(function () {
344
+ return /*#__PURE__*/_react["default"].createElement("div", {
345
+ className: "".concat(prefix, "-segmentation")
346
+ });
347
+ }, []);
348
+ (0, _react.useEffect)(function () {
349
+ var _ref6;
350
+
351
+ var departmentsStr = (departments === null || departments === void 0 ? void 0 : departments.length) !== 0 ? departments === null || departments === void 0 ? void 0 : departments.map(function (item) {
352
+ return item.name;
353
+ }) : [];
354
+ var groupsStr = (groups === null || groups === void 0 ? void 0 : groups.length) !== 0 ? groups === null || groups === void 0 ? void 0 : groups.map(function (item) {
355
+ return item.name;
356
+ }) : [];
357
+ var usersStr = (users === null || users === void 0 ? void 0 : users.length) !== 0 ? users === null || users === void 0 ? void 0 : users.map(function (item) {
358
+ return item.name;
359
+ }) : [];
360
+ setStr((_ref6 = [].concat(_toConsumableArray(departmentsStr), _toConsumableArray(groupsStr), _toConsumableArray(usersStr))) === null || _ref6 === void 0 ? void 0 : _ref6.join(','));
361
+ }, [visibilityScope]);
302
362
  (0, _react.useEffect)(function () {
303
363
  if (dailyContent) {
304
364
  var mindData = dailyContent.find(function (item) {
@@ -405,7 +465,16 @@ var DynamicItemHeader = function DynamicItemHeader(_ref) {
405
465
  className: (0, _classnames["default"])('tu-icon-jinzhan-s', "".concat(prefix, "__more-operate-selection-icon"))
406
466
  }), (0, _getLocale.getLocale)('Per_details_OperationRecord'))))))), /*#__PURE__*/_react["default"].createElement("div", {
407
467
  className: "".concat(prefix, "-desc-time")
408
- }, createDate))), renderDialogConfirm, /*#__PURE__*/_react["default"].createElement(_commentsDialog["default"], {
468
+ }, /*#__PURE__*/_react["default"].createElement(_tooltip["default"].Text, {
469
+ maxWidth: 98,
470
+ text: /*#__PURE__*/_react["default"].createElement(_openData.OpenDepartmentName, {
471
+ id: departmentId,
472
+ name: departmentName
473
+ })
474
+ }), renderSegmentation, createDate, type[summaryVisible] && /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, renderSegmentation, /*#__PURE__*/_react["default"].createElement(_tooltip["default"], {
475
+ overlay: /*#__PURE__*/_react["default"].createElement("span", null, typeTootips[summaryVisible]),
476
+ placement: "top"
477
+ }, /*#__PURE__*/_react["default"].createElement("span", null, type[summaryVisible])))))), renderDialogConfirm, /*#__PURE__*/_react["default"].createElement(_commentsDialog["default"], {
409
478
  visible: evaluateVisible,
410
479
  feedId: feedId,
411
480
  toUserId: user.id || user.userId,
@@ -47,7 +47,7 @@ var _bsGlobal = require("../../../../utils/bs-global");
47
47
 
48
48
  require("./index.css");
49
49
 
50
- var _excluded = ["data"];
50
+ var _excluded = ["data", "isFold"];
51
51
 
52
52
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
53
53
 
@@ -91,6 +91,8 @@ var DynamicReply = function DynamicReply(_ref) {
91
91
  var _classNames;
92
92
 
93
93
  var data = _ref.data,
94
+ _ref$isFold = _ref.isFold,
95
+ isFold = _ref$isFold === void 0 ? true : _ref$isFold,
94
96
  restProps = _objectWithoutProperties(_ref, _excluded);
95
97
 
96
98
  var feedId = data.feedId,
@@ -283,6 +285,8 @@ var DynamicReply = function DynamicReply(_ref) {
283
285
  }
284
286
 
285
287
  var handleInView = function handleInView(inview) {
288
+ if (!isFold) return;
289
+
286
290
  if (inview) {
287
291
  window.titaTracker('planAction').record({
288
292
  actionName: '查看日报',
@@ -29,7 +29,7 @@ var _getLocale = require("../../../../utils/getLocale");
29
29
 
30
30
  require("./index.css");
31
31
 
32
- var _excluded = ["data"];
32
+ var _excluded = ["data", "isFold"];
33
33
 
34
34
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
35
35
 
@@ -58,6 +58,8 @@ var prefix = 'titaui-dynamic-report-item';
58
58
 
59
59
  var DynamicReply = function DynamicReply(_ref) {
60
60
  var data = _ref.data,
61
+ _ref$isFold = _ref.isFold,
62
+ isFold = _ref$isFold === void 0 ? true : _ref$isFold,
61
63
  restProps = _objectWithoutProperties(_ref, _excluded);
62
64
 
63
65
  var submitState = data.submitState,
@@ -163,6 +165,8 @@ var DynamicReply = function DynamicReply(_ref) {
163
165
  }
164
166
 
165
167
  var handleInView = function handleInView(inview) {
168
+ if (!isFold) return;
169
+
166
170
  if (inview) {
167
171
  window.titaTracker('planAction').record({
168
172
  actionName: '查看日报',
@@ -314,11 +314,13 @@ var DynamicItem = function DynamicItem(_ref) {
314
314
  return /*#__PURE__*/_react["default"].createElement(_dynamicNewReport["default"], _extends({
315
315
  data: data,
316
316
  onDeleteFeed: onDeleteFeed,
317
- curAtUser: curAtUser
317
+ curAtUser: curAtUser,
318
+ isFold: isFold
318
319
  }, restProps));
319
320
  }
320
321
 
321
322
  return /*#__PURE__*/_react["default"].createElement(_dynamicReport["default"], _extends({
323
+ isFold: isFold,
322
324
  data: data,
323
325
  onDeleteFeed: onDeleteFeed
324
326
  }, restProps));
@@ -400,7 +402,7 @@ var DynamicItem = function DynamicItem(_ref) {
400
402
  default:
401
403
  return null;
402
404
  }
403
- }, [data, curAtUser]);
405
+ }, [data, curAtUser, isFold]);
404
406
 
405
407
  var renderUpvoteCount = function renderUpvoteCount(type, count) {
406
408
  if (count === 0) {
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="10px" height="10px" viewBox="0 0 10 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>canceled</title>
4
+ <defs>
5
+ <filter color-interpolation-filters="auto" id="filter-1">
6
+ <feColorMatrix in="SourceGraphic" type="matrix" values="0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 0 1.000000 0 0 0 1.000000 0"></feColorMatrix>
7
+ </filter>
8
+ </defs>
9
+ <g id="线性" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
10
+ <g id="canceled" transform="translate(-2.000000, -2.000000)" filter="url(#filter-1)">
11
+ <g>
12
+ <path d="M10.7368897,2.44585438 C10.9646956,2.21804854 11.3340418,2.21804854 11.5618476,2.44585438 C11.7896535,2.67366021 11.7896535,3.04300645 11.5618476,3.27081229 L11.5618476,3.27081229 L7.82,7.012 L11.5203914,10.7123106 C11.7481972,10.9401164 11.7481972,11.3094627 11.5203914,11.5372685 C11.2925856,11.7650743 10.9232393,11.7650743 10.6954335,11.5372685 L6.995,7.837 L3.31226851,11.5203914 C3.10977444,11.7228855 2.79544597,11.7453848 2.5680998,11.5878894 L2.4873106,11.5203914 C2.25950476,11.2925856 2.25950476,10.9232393 2.4873106,10.6954335 L2.4873106,10.6954335 L6.17,7.012 L2.44585438,3.2876894 C2.21804854,3.05988356 2.21804854,2.69053732 2.44585438,2.46273149 C2.67366021,2.23492565 3.04300645,2.23492565 3.27081229,2.46273149 L6.995,6.187 Z" id="形状结合" fill="#444444"></path>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="34px" height="34px" viewBox="0 0 34 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 27</title>
4
+ <g id="到期时间页面优化" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="合作客户---已过期" transform="translate(-424.000000, -362.000000)">
6
+ <g id="编组-27备份-2" transform="translate(390.000000, 167.000000)">
7
+ <g id="编组-27" transform="translate(34.000000, 195.000000)">
8
+ <rect id="矩形" fill-opacity="0" fill="#FFFFFF" x="0" y="0" width="34" height="34"></rect>
9
+ <text id="😭" font-family="AppleColorEmoji, Apple Color Emoji" font-size="28" font-weight="normal" line-spacing="28" fill="#141C28">
10
+ <tspan x="3" y="31.2419314">😭</tspan>
11
+ </text>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,112 @@
1
+ .titaui-expiration-reminder {
2
+ width: 420px;
3
+ min-height: 430px;
4
+ max-height: 466px;
5
+ margin: 0 auto;
6
+ padding-top: 195px;
7
+ border-radius: 40px;
8
+ background-color: #ffffff;
9
+ background-image: url("./img/reminder.png");
10
+ background-size: 100% 160px;
11
+ background-repeat: no-repeat;
12
+ box-sizing: border-box;
13
+ }
14
+
15
+ .titaui-expiration-reminder__close {
16
+ width: 32px;
17
+ height: 32px;
18
+ background-image: url("./img/close.png");
19
+ background-size: 100%;
20
+ background-repeat: no-repeat;
21
+ cursor: pointer;
22
+ position: absolute;
23
+ top: 0;
24
+ right: -42px;
25
+ }
26
+
27
+ .titaui-expiration-reminder__contact {
28
+ font-size: 12px;
29
+ line-height: 18px;
30
+ color: #89919F;
31
+ }
32
+
33
+ .titaui-expiration-reminder__contact-number::selection {
34
+ background-color: #2879ff;
35
+ color: #ffffff;
36
+ }
37
+
38
+ .titaui-expiration-reminder__description {
39
+ margin: 24px 0 28px;
40
+ font-size: 18px;
41
+ line-height: 36px;
42
+ color: #141C28;
43
+ text-align: center;
44
+ }
45
+
46
+ .titaui-expiration-reminder__description .titaui-text-btn {
47
+ font-size: 18px;
48
+ line-height: 36px;
49
+ }
50
+
51
+ .titaui-expiration-reminder__footer {
52
+ text-align: center;
53
+ }
54
+
55
+ .titaui-expiration-reminder__footer .titaui-rect-btn {
56
+ width: 356px;
57
+ height: 52px;
58
+ margin: 0 auto 10px;
59
+ font-size: 18px;
60
+ line-height: 24px;
61
+ border-radius: 26px;
62
+ }
63
+
64
+ .titaui-expiration-reminder__qrcode {
65
+ padding-top: 74px;
66
+ background-image: none;
67
+ text-align: center;
68
+ position: relative;
69
+ }
70
+
71
+ .titaui-expiration-reminder__qrcode-title {
72
+ font-size: 26px;
73
+ font-weight: 600;
74
+ line-height: 40px;
75
+ color: #141C28;
76
+ }
77
+
78
+ .titaui-expiration-reminder__qrcode-subtitle {
79
+ margin-top: 8px;
80
+ font-size: 18px;
81
+ line-height: 24px;
82
+ color: #89919F;
83
+ }
84
+
85
+ .titaui-expiration-reminder__qrcode-img {
86
+ margin-top: 28px;
87
+ }
88
+
89
+ .titaui-expiration-reminder__qrcode .titaui-text-btn {
90
+ position: absolute;
91
+ top: 28px;
92
+ left: 32px;
93
+ }
94
+
95
+ .titaui-expiration-reminder__remain-day {
96
+ font-size: 36px;
97
+ color: #2879ff;
98
+ }
99
+
100
+ .titaui-expiration-reminder__title {
101
+ font-size: 28px;
102
+ font-weight: 600;
103
+ line-height: 34px;
104
+ color: #141C28;
105
+ text-align: center;
106
+ }
107
+
108
+ .titaui-expiration-reminder__title img {
109
+ position: relative;
110
+ top: -4px;
111
+ left: -4px;
112
+ }