@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 +6 -0
- package/package.json +1 -1
- package/src/blog/components/BaseLayout.tsx +2 -2
- package/src/blog/main.css +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -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-
|
|
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)
|
|
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
|
|