zudoku 0.23.0 → 0.23.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zudoku",
3
- "version": "0.23.0",
3
+ "version": "0.23.2",
4
4
  "type": "module",
5
5
  "homepage": "https://zudoku.dev",
6
6
  "repository": {
@@ -153,7 +153,7 @@
153
153
  "@types/react-dom": "19.0.1",
154
154
  "@vitejs/plugin-react": "4.3.4",
155
155
  "@zudoku/httpsnippet": "10.0.9",
156
- "@zudoku/react-helmet-async": "2.0.4",
156
+ "@zudoku/react-helmet-async": "2.0.5",
157
157
  "autoprefixer": "10.4.20",
158
158
  "chokidar": "3.6.0",
159
159
  "class-variance-authority": "0.7.1",
@@ -66,7 +66,7 @@ export const Header = memo(function HeaderInner() {
66
66
  <header className="sticky lg:top-0 z-10 bg-background/80 backdrop-blur w-full">
67
67
  <Banner />
68
68
  <div className="max-w-screen-2xl mx-auto">
69
- <div className="grid grid-cols-2 lg:grid-cols-[calc(var(--side-nav-width))_1fr] lg:gap-12 items-center border-b px-10 lg:px-12 h-[--top-header-height]">
69
+ <div className="grid grid-cols-[1fr_auto] lg:grid-cols-[calc(var(--side-nav-width))_1fr] lg:gap-12 items-center border-b px-4 lg:px-12 h-[--top-header-height]">
70
70
  <div className="flex">
71
71
  <Link to="/">
72
72
  <div className="flex items-center gap-3.5">
@@ -66,7 +66,7 @@ export const Layout = ({ children }: { children?: ReactNode }) => {
66
66
  <Header />
67
67
  <Slotlet name="layout-after-head" />
68
68
 
69
- <div className="w-full max-w-screen-2xl mx-auto px-10 lg:px-12">
69
+ <div className="w-full max-w-screen-2xl mx-auto px-4 lg:px-12">
70
70
  {showSpinner ? (
71
71
  <LoadingFallback />
72
72
  ) : (
@@ -33,7 +33,7 @@ export const MobileTopNavigation = () => {
33
33
  className="lg:hidden h-[100dvh] right-0 left-auto w-[320px] rounded-none"
34
34
  aria-describedby={undefined}
35
35
  >
36
- <div className="p-6 overflow-y-auto overscroll-none">
36
+ <div className="p-4 overflow-y-auto overscroll-none">
37
37
  <VisuallyHidden>
38
38
  <DrawerTitle>Navigation</DrawerTitle>
39
39
  </VisuallyHidden>
@@ -31,7 +31,7 @@ export const Sidebar = ({
31
31
  className="lg:hidden h-[100dvh] left-0 w-[320px] rounded-none"
32
32
  aria-describedby={undefined}
33
33
  >
34
- <div className="p-6 overflow-y-auto overscroll-none">
34
+ <div className="p-4 overflow-y-auto overscroll-none">
35
35
  <VisuallyHidden>
36
36
  <DrawerTitle>Sidebar</DrawerTitle>
37
37
  </VisuallyHidden>