@papernote/ui 1.8.2 → 1.8.3

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/styles.css CHANGED
@@ -4012,6 +4012,10 @@ input:checked + .slider:before{
4012
4012
  padding-top: 0.75rem;
4013
4013
  }
4014
4014
 
4015
+ .pt-32{
4016
+ padding-top: 8rem;
4017
+ }
4018
+
4015
4019
  .pt-4{
4016
4020
  padding-top: 1rem;
4017
4021
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papernote/ui",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "type": "module",
5
5
  "description": "A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive",
6
6
  "main": "dist/index.js",
@@ -92,7 +92,7 @@ export const Layout: React.FC<LayoutProps> = ({
92
92
  {sidebar}
93
93
 
94
94
  {/* Gutter area - between sidebar and content with page navigation */}
95
- <div className="w-8 h-full bg-paper-100 flex-shrink-0 relative flex items-center justify-center">
95
+ <div className="w-8 h-full bg-paper-100 flex-shrink-0 relative z-10 flex items-start justify-center pt-32">
96
96
  <PageNavigation sections={sections} />
97
97
  </div>
98
98