datastake-daf 0.6.578 → 0.6.579

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.
@@ -8161,4 +8161,3 @@ const AuthLayout = ({
8161
8161
 
8162
8162
  exports.AppLayout = AppLayout;
8163
8163
  exports.AuthLayout = AuthLayout;
8164
- exports.AuthNavbar = AuthNavbar;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.578",
3
+ "version": "0.6.579",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
package/src/layouts.js CHANGED
@@ -1,3 +1,2 @@
1
1
  export { default as AppLayout } from './@daf/layouts/AppLayout/index.jsx';
2
2
  export { default as AuthLayout } from './@daf/layouts/AuthLayout/index.jsx';
3
- export { default as AuthNavbar } from './@daf/layouts/AuthLayout/components/Navbar/index.jsx';
@@ -1,77 +0,0 @@
1
- .auth-layout {
2
- min-height: 100vh;
3
- display: flex;
4
- flex-direction: column;
5
- background-color: #fff;
6
- font-family: "Outfit", sans-serif;
7
-
8
- .main-cont {
9
- flex: 1;
10
- display: flex;
11
- height: calc(100vh - 64px); // Subtract header height
12
- transition: all 0.2s ease;
13
-
14
- @media (max-width: 768px) {
15
- flex-direction: column;
16
- height: auto;
17
- }
18
- }
19
-
20
- .d-cont.left {
21
- width: 50%;
22
- padding: 6rem 2rem;
23
- display: flex;
24
- justify-content: center;
25
- overflow-y: auto;
26
- background: #fff;
27
-
28
- .main {
29
- width: 350px;
30
- margin: auto;
31
-
32
- .left-logo img {
33
- height: 40px;
34
- margin-bottom: 48px;
35
- }
36
-
37
- .left-header h2 {
38
- font-size: 36px;
39
- font-weight: 600;
40
- color: #101828;
41
- margin-bottom: 12px;
42
- }
43
-
44
- .left-header p {
45
- font-size: 16px;
46
- color: #667085;
47
- }
48
- }
49
- }
50
-
51
- .d-cont.right {
52
- width: 50%;
53
- background-size: cover;
54
- background-position: center;
55
- background-repeat: no-repeat;
56
-
57
- @media (max-width: 768px) {
58
- display: none;
59
- }
60
- }
61
-
62
- &.sbg {
63
- --primary-color: #992f24;
64
- .ant-btn-primary {
65
- background: var(--primary-color);
66
- border-color: var(--primary-color);
67
- }
68
- }
69
-
70
- &.nashiriki {
71
- --primary-color: #004b91;
72
- .ant-btn-primary {
73
- background: var(--primary-color);
74
- border-color: var(--primary-color);
75
- }
76
- }
77
- }