gov-layout 1.2.27 → 1.2.28
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/dist/index.js +10 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -625,12 +625,12 @@ function ProfileIcon() {
|
|
|
625
625
|
}
|
|
626
626
|
);
|
|
627
627
|
}
|
|
628
|
-
function
|
|
628
|
+
function AvatarIcon({ size = 20 }) {
|
|
629
629
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
630
630
|
"svg",
|
|
631
631
|
{
|
|
632
|
-
width:
|
|
633
|
-
height:
|
|
632
|
+
width: size,
|
|
633
|
+
height: size,
|
|
634
634
|
viewBox: "0 0 24 24",
|
|
635
635
|
fill: "currentColor",
|
|
636
636
|
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" })
|
|
@@ -690,9 +690,11 @@ function SidebarUserProfile({
|
|
|
690
690
|
display: "flex",
|
|
691
691
|
alignItems: "center",
|
|
692
692
|
justifyContent: "center",
|
|
693
|
-
color: "#fff"
|
|
693
|
+
color: "#fff",
|
|
694
|
+
fontWeight: 700,
|
|
695
|
+
fontSize: "14px"
|
|
694
696
|
},
|
|
695
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
697
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(AvatarIcon, { size: 20 })
|
|
696
698
|
}
|
|
697
699
|
)
|
|
698
700
|
}
|
|
@@ -809,9 +811,11 @@ function SidebarUserProfile({
|
|
|
809
811
|
alignItems: "center",
|
|
810
812
|
justifyContent: "center",
|
|
811
813
|
color: "#fff",
|
|
814
|
+
fontWeight: 700,
|
|
815
|
+
fontSize: "16px",
|
|
812
816
|
flexShrink: 0
|
|
813
817
|
},
|
|
814
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
818
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(AvatarIcon, { size: 24 })
|
|
815
819
|
}
|
|
816
820
|
),
|
|
817
821
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { style: { flex: 1, minWidth: 0 }, children: [
|