datastake-daf 0.6.586 → 0.6.587
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/dist/layouts/index.js
CHANGED
|
@@ -7314,15 +7314,19 @@ const GlobalNavbarStyles = ft`
|
|
|
7314
7314
|
transition: all 0.2s ease;
|
|
7315
7315
|
|
|
7316
7316
|
&:hover {
|
|
7317
|
-
background-color: #
|
|
7317
|
+
background-color: #265a80;
|
|
7318
|
+
|
|
7319
|
+
.language-option span {
|
|
7320
|
+
color: #ffffff;
|
|
7321
|
+
}
|
|
7318
7322
|
}
|
|
7319
7323
|
|
|
7320
7324
|
&.ant-select-item-option-selected {
|
|
7321
|
-
background-color: #
|
|
7322
|
-
|
|
7325
|
+
background-color: #265a80;
|
|
7326
|
+
color: #ffffff;
|
|
7323
7327
|
|
|
7324
7328
|
.language-option span {
|
|
7325
|
-
|
|
7329
|
+
color: #ffffff;
|
|
7326
7330
|
}
|
|
7327
7331
|
}
|
|
7328
7332
|
|
package/package.json
CHANGED
|
@@ -80,7 +80,7 @@ const LoginForm = () => (
|
|
|
80
80
|
style={{
|
|
81
81
|
width: "100%",
|
|
82
82
|
padding: "12px",
|
|
83
|
-
backgroundColor: "#
|
|
83
|
+
backgroundColor: "#3D8EDB",
|
|
84
84
|
color: "white",
|
|
85
85
|
border: "none",
|
|
86
86
|
borderRadius: "8px",
|
|
@@ -166,7 +166,7 @@ const SignupForm = () => (
|
|
|
166
166
|
style={{
|
|
167
167
|
width: "100%",
|
|
168
168
|
padding: "12px",
|
|
169
|
-
backgroundColor: "#
|
|
169
|
+
backgroundColor: "#3D8EDB",
|
|
170
170
|
color: "white",
|
|
171
171
|
border: "none",
|
|
172
172
|
borderRadius: "8px",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
color: #667085;
|
|
81
81
|
right: 12px;
|
|
82
82
|
|
|
83
|
+
|
|
83
84
|
svg {
|
|
84
85
|
width: 20px;
|
|
85
86
|
height: 20px;
|
|
@@ -135,13 +136,16 @@
|
|
|
135
136
|
transition: all 0.2s ease;
|
|
136
137
|
|
|
137
138
|
&:hover {
|
|
138
|
-
background-color: #
|
|
139
|
+
background-color: #265a80;
|
|
140
|
+
|
|
141
|
+
.language-option span {
|
|
142
|
+
color: #ffffff;
|
|
143
|
+
}
|
|
139
144
|
}
|
|
140
145
|
|
|
141
146
|
&.ant-select-item-option-selected {
|
|
142
|
-
background-color: #
|
|
147
|
+
background-color: #265a80;
|
|
143
148
|
color: #ffffff;
|
|
144
|
-
padding: 4px !important;
|
|
145
149
|
|
|
146
150
|
.language-option span {
|
|
147
151
|
color: #ffffff;
|
|
@@ -20,15 +20,19 @@ export const GlobalNavbarStyles = createGlobalStyle`
|
|
|
20
20
|
transition: all 0.2s ease;
|
|
21
21
|
|
|
22
22
|
&:hover {
|
|
23
|
-
background-color: #
|
|
23
|
+
background-color: #265a80;
|
|
24
|
+
|
|
25
|
+
.language-option span {
|
|
26
|
+
color: #ffffff;
|
|
27
|
+
}
|
|
24
28
|
}
|
|
25
29
|
|
|
26
30
|
&.ant-select-item-option-selected {
|
|
27
|
-
background-color: #
|
|
28
|
-
|
|
31
|
+
background-color: #265a80;
|
|
32
|
+
color: #ffffff;
|
|
29
33
|
|
|
30
34
|
.language-option span {
|
|
31
|
-
|
|
35
|
+
color: #ffffff;
|
|
32
36
|
}
|
|
33
37
|
}
|
|
34
38
|
|