refine-mantine 1.7.0-dev.7 → 1.7.0-dev.8

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 CHANGED
@@ -1309,6 +1309,7 @@ const LayoutMinimal = (p) => {
1309
1309
  })
1310
1310
  }),
1311
1311
  /* @__PURE__ */ jsx(AppShell.Section, {
1312
+ pb: "sm",
1312
1313
  ...p.navbarFooterProps,
1313
1314
  visibleFrom: "sm",
1314
1315
  children: p.renderIdentity ? p.renderIdentity(identity, handleLogout) : /* @__PURE__ */ jsxs(Stack, {
@@ -1354,6 +1355,7 @@ const LayoutMinimal = (p) => {
1354
1355
  })
1355
1356
  }),
1356
1357
  /* @__PURE__ */ jsx(AppShell.Section, {
1358
+ pb: "sm",
1357
1359
  ...p.navbarFooterProps,
1358
1360
  hiddenFrom: "sm",
1359
1361
  children: /* @__PURE__ */ jsxs(Stack, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "refine-mantine",
3
- "version": "1.7.0-dev.7",
3
+ "version": "1.7.0-dev.8",
4
4
  "type": "module",
5
5
  "exports": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -178,7 +178,7 @@ export const LayoutMinimal: React.FC<LayoutProps> = (p) => {
178
178
  )}
179
179
  </AppShell.Section>
180
180
 
181
- <AppShell.Section {...p.navbarFooterProps} visibleFrom="sm">
181
+ <AppShell.Section pb="sm" {...p.navbarFooterProps} visibleFrom="sm">
182
182
  {p.renderIdentity ? (
183
183
  p.renderIdentity(identity, handleLogout)
184
184
  ) : (
@@ -212,7 +212,7 @@ export const LayoutMinimal: React.FC<LayoutProps> = (p) => {
212
212
  )}
213
213
  </AppShell.Section>
214
214
 
215
- <AppShell.Section {...p.navbarFooterProps} hiddenFrom="sm">
215
+ <AppShell.Section pb="sm" {...p.navbarFooterProps} hiddenFrom="sm">
216
216
  <Stack gap="xs">
217
217
  {p.locales && (
218
218
  <Locales locales={p.locales} variant="full" label={languageLabel} />