@eclass/ui-kit 1.53.1 → 1.53.3

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.
@@ -6415,9 +6415,9 @@ const EventsList = ({
6415
6415
  const border = `1px solid ${(_a = vars("colors-neutral-platinum")) != null ? _a : "#E8E8E8"}`;
6416
6416
  const initOrEnd = ["end-course", "init-course", "init-course-flexible", "end-course-flexible"].includes(type);
6417
6417
  const dateTextStyle = {
6418
+ color: vars("colors-neutral-white"),
6418
6419
  fontSize: "14px",
6419
6420
  fontWeight: "700",
6420
- color: vars("colors-neutral-white"),
6421
6421
  lineHeight: "100%"
6422
6422
  };
6423
6423
  const detailTextStyle = {
@@ -6462,13 +6462,23 @@ const EventsList = ({
6462
6462
  gap: "8px",
6463
6463
  w: "100%",
6464
6464
  children: [/* @__PURE__ */ jsxs(Box, {
6465
- lineHeight: "21px",
6466
- display: "flex",
6467
- justifyContent: "space-between",
6468
6465
  alignItems: "center",
6466
+ display: "flex",
6469
6467
  fontSize: "16px",
6470
6468
  fontWeight: "700",
6471
- children: [name, " ", hasNotification && /* @__PURE__ */ jsx(NotificationIcon, {})]
6469
+ justifyContent: "space-between",
6470
+ lineHeight: "21px",
6471
+ sx: {
6472
+ ">span": {
6473
+ width: "calc(100% - 12px)"
6474
+ },
6475
+ ">svg": {
6476
+ alignSelf: "flex-start"
6477
+ }
6478
+ },
6479
+ children: [/* @__PURE__ */ jsx("span", {
6480
+ children: name
6481
+ }), hasNotification && /* @__PURE__ */ jsx(NotificationIcon, {})]
6472
6482
  }), showCourse && !initOrEnd && /* @__PURE__ */ jsxs(Box, {
6473
6483
  as: "span",
6474
6484
  sx: detailTextStyle,