react-better-html 1.1.188 → 1.1.189

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.mjs CHANGED
@@ -9518,10 +9518,10 @@ var SideMenuComponent = function SideMenu({
9518
9518
  readyBottomItems && /* @__PURE__ */ jsx26(
9519
9519
  Div_default.column,
9520
9520
  {
9521
- borderTop: `solid 1px ${theme2.colors.border}`,
9521
+ borderTop: mediaQuery.size1000 ? `solid 1px ${theme2.colors.border}` : void 0,
9522
9522
  gap: theme2.styles.gap / 2,
9523
9523
  marginTop: "auto",
9524
- paddingTop: theme2.styles.space,
9524
+ paddingTop: mediaQuery.size1000 ? theme2.styles.space : void 0,
9525
9525
  paddingInline: theme2.styles.space,
9526
9526
  paddingBottom: !isCollapsable ? theme2.styles.space : void 0,
9527
9527
  children: readyBottomItems.map((item) => /* @__PURE__ */ jsx26(MenuItemComponent, { item, onClick: onClickXButton }, item.text))