jclib-ui 0.0.73 → 0.0.74

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.
@@ -16832,16 +16832,14 @@ function Sh({ pages: e, page: t, setPage: r }) {
16832
16832
  ] });
16833
16833
  }
16834
16834
  const xh = bt.div`
16835
- background-color: ${({ backColor: e }) => e};
16836
- border: 2px solid ${({ color: e }) => e};
16837
- border-top: 8px solid ${({ color: e }) => e};
16835
+ color: var(--body-color);
16836
+ background-color: ${({ backColor: e }) => e || "var(--bs-body-bg)"};
16837
+ border: 2px solid ${({ color: e }) => e || "var(--bs-border-color)"};
16838
+ border-top: 8px solid ${({ color: e }) => e || "var(--bs-border-color)"};
16838
16839
  border-radius: 6px;
16839
16840
  padding: 10px 15px;
16840
16841
  box-shadow: var(--sombra);
16841
16842
 
16842
- /* font-family: 'Raleway', sans-serif; */
16843
- color: var(--body-color);
16844
-
16845
16843
  .title {
16846
16844
  font-size: 22px;
16847
16845
  text-align: center;
@@ -16856,15 +16854,16 @@ function B0({
16856
16854
  backColor: r = "var(--dash-bg)",
16857
16855
  minHeight: n,
16858
16856
  children: o,
16859
- ...i
16857
+ marginBottom: i = 0,
16858
+ ...a
16860
16859
  }) {
16861
16860
  return /* @__PURE__ */ g.jsxs(
16862
16861
  xh,
16863
16862
  {
16864
16863
  color: t,
16865
16864
  backColor: r,
16866
- style: { minHeight: n },
16867
- ...i,
16865
+ style: { minHeight: n, marginBottom: i },
16866
+ ...a,
16868
16867
  children: [
16869
16868
  e && /* @__PURE__ */ g.jsx("h3", { className: "title", children: e }),
16870
16869
  o