@refinedev/core 4.8.0 → 4.8.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": "@refinedev/core",
3
- "version": "4.8.0",
3
+ "version": "4.8.2",
4
4
  "description": "refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
@@ -14,7 +14,6 @@ export const GitHubBanner = () => {
14
14
  <div
15
15
  className="banner"
16
16
  style={{
17
- display: "flex",
18
17
  flexDirection: "row",
19
18
  justifyContent: "center",
20
19
  alignItems: "center",
@@ -24,6 +23,12 @@ export const GitHubBanner = () => {
24
23
  borderBottom: "1px solid rgba(255, 255, 255, 0.15)",
25
24
  }}
26
25
  >
26
+ {/* sider offset for center alignment */}
27
+ <div
28
+ style={{
29
+ width: "200px",
30
+ }}
31
+ />
27
32
  <a
28
33
  className="gh-link"
29
34
  href="https://s.refine.dev/github-support"
@@ -1,4 +1,11 @@
1
1
  export const CSSRules = [
2
+ `
3
+ .banner {
4
+ display: flex;
5
+ @media (max-width: 1000px) {
6
+ display: none;
7
+ }
8
+ }`,
2
9
  `
3
10
  .banner::before,
4
11
  .banner::after {
@@ -53,7 +60,7 @@ export const CSSRules = [
53
60
  `
54
61
  .gh-link, .gh-link:hover, .gh-link:active, .gh-link:visited, .gh-link:focus {
55
62
  text-decoration: none;
56
- z-index: 9;
63
+ zIndex: 9,
57
64
  }
58
65
  `,
59
66
  ];