@visns-studio/visns-components 4.6.13 → 4.7.0
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.
|
@@ -10,7 +10,7 @@ import CustomFetch from '../Fetch';
|
|
|
10
10
|
|
|
11
11
|
import styles from './styles/Login.module.css';
|
|
12
12
|
|
|
13
|
-
const Login = ({
|
|
13
|
+
const Login = ({ logo, providers, setSystemAuth, setUserProfile }) => {
|
|
14
14
|
const location = useLocation();
|
|
15
15
|
|
|
16
16
|
const [auth, setAuth] = useState({
|
|
@@ -138,13 +138,6 @@ const Login = ({ loginBg, logo, providers, setSystemAuth, setUserProfile }) => {
|
|
|
138
138
|
return (
|
|
139
139
|
<div className={styles.lcontainer}>
|
|
140
140
|
<div className={styles.lwrap}>
|
|
141
|
-
<aside
|
|
142
|
-
className={styles.aside}
|
|
143
|
-
style={{
|
|
144
|
-
backgroundImage: `url(${loginBg})`,
|
|
145
|
-
backgroundSize: 'cover',
|
|
146
|
-
}}
|
|
147
|
-
></aside>
|
|
148
141
|
<div className={styles.logincontainer}>
|
|
149
142
|
<form onSubmit={handleSubmit}>
|
|
150
143
|
<Reveal effect="fadeInUp">
|
|
@@ -63,7 +63,6 @@
|
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
.logincontainer {
|
|
66
|
-
margin-left: var(--sidebar-width);
|
|
67
66
|
min-height: 100vh;
|
|
68
67
|
flex-grow: 1;
|
|
69
68
|
display: flex;
|
|
@@ -229,7 +228,6 @@ select:not(:placeholder-shown) + .fi__span {
|
|
|
229
228
|
}
|
|
230
229
|
|
|
231
230
|
.logincontainer {
|
|
232
|
-
margin-left: 0;
|
|
233
231
|
min-height: 100vh;
|
|
234
232
|
flex-grow: 1;
|
|
235
233
|
display: flex;
|
package/package.json
CHANGED