@bbki.ng/site 5.5.34 → 5.5.35

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @bbki.ng/site
2
2
 
3
+ ## 5.5.35
4
+
5
+ ### Patch Changes
6
+
7
+ - 86a9e69: fix padding
8
+
3
9
  ## 5.5.34
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "5.5.34",
3
+ "version": "5.5.35",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -27,7 +27,7 @@ export const BaseLayout = () => {
27
27
  loading={isLoading}
28
28
  customLogo={<Slot name="logo" data={defaultLogo} placeholder={defaultLogo} />}
29
29
  style={{
30
- paddingTop: 'var(--safe-top)',
30
+ paddingTop: 'calc(var(--safe-top) + 4px)',
31
31
  transition: 'all .2s ease-in-out',
32
32
  }}
33
33
  />
@@ -45,7 +45,7 @@ export const BaseLayout = () => {
45
45
  </div>
46
46
  }
47
47
  >
48
- <Container className="py-32">
48
+ <Container className="py-48">
49
49
  <ErrorBoundary>
50
50
  <Outlet />
51
51
  </ErrorBoundary>
package/src/blog/main.css CHANGED
@@ -73,7 +73,7 @@ a {
73
73
 
74
74
  @supports (padding-top: env(safe-area-inset-top)) {
75
75
  :root {
76
- --safe-top: calc(env(safe-area-inset-top) + 4px);
76
+ --safe-top: calc(env(safe-area-inset-top));
77
77
  }
78
78
  }
79
79
 
@@ -82,7 +82,7 @@ a {
82
82
  -ms-overflow-style: none; /* Internet Explorer 10+ */
83
83
  scrollbar-width: none;
84
84
  transition: all 0.2s ease-in-out;
85
- padding-top: var(--safe-top);
85
+ /* padding-top: var(--safe-top); */
86
86
  box-sizing: border-box;
87
87
  }
88
88