@bbki.ng/site 5.4.40 → 5.4.41

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,13 @@
1
1
  # @bbki.ng/site
2
2
 
3
+ ## 5.4.41
4
+
5
+ ### Patch Changes
6
+
7
+ - 9b6dfe7: fix safaarea style
8
+ - Updated dependencies [9b6dfe7]
9
+ - @bbki.ng/ui@0.1.15
10
+
3
11
  ## 5.4.40
4
12
 
5
13
  ### Patch Changes
package/index.html CHANGED
@@ -2,7 +2,7 @@
2
2
  <html lang="en" class="h-full no-scrollbar">
3
3
  <head>
4
4
  <title>bbki.ng</title>
5
- <meta name="viewport" content="width=device-width, initial-scale=1" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
6
6
  <meta name="description" content="baby king" />
7
7
  <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
8
8
  <link
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/site",
3
- "version": "5.4.40",
3
+ "version": "5.4.41",
4
4
  "description": "code behind bbki.ng",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -14,7 +14,7 @@
14
14
  "react-dom": "^18.0.0",
15
15
  "react-router-dom": "6",
16
16
  "swr": "^2.2.5",
17
- "@bbki.ng/ui": "0.1.14"
17
+ "@bbki.ng/ui": "0.1.15"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@eslint/compat": "^1.0.0",
package/src/blog/app.tsx CHANGED
@@ -26,6 +26,9 @@ const Layout = () => {
26
26
  className="gradient-blur-cover select-none"
27
27
  loading={isLoading}
28
28
  customLogo={logo}
29
+ style={{
30
+ paddingTop: 'env(safe-area-inset-top, 0px)',
31
+ }}
29
32
  />
30
33
  }
31
34
  main={
package/src/blog/main.css CHANGED
@@ -61,6 +61,9 @@ body {
61
61
  overflow: auto;
62
62
  -ms-overflow-style: none; /* Internet Explorer 10+ */
63
63
  scrollbar-width: none;
64
+ padding-top: env(safe-area-inset-top);
65
+ padding-bottom: env(safe-area-inset-bottom);
66
+ box-sizing: border-box;
64
67
  }
65
68
 
66
69
  #blog::-webkit-scrollbar {