imbric-theme 0.6.5 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
- package/atoms/Check/Check.js +6 -4
- package/atoms/Toggle/Toggle.js +7 -6
- package/layout/Sidebar/Sidebar.js +3 -1
- package/molecules/ColumnTable/ColumnTable.js +101 -95
- package/molecules/ColumnTable/ColumnTable.module.css +12 -0
- package/molecules/InputAutocomplete/InputAutocomplete.js +8 -5
- package/molecules/RowTable/RowTable.js +481 -479
- package/molecules/RowTable/RowTable.module.css +4 -2
- package/package.json +1 -1
- package/pages/Login/Login.js +3 -3
@@ -32,13 +32,15 @@
|
|
32
32
|
|
33
33
|
.tdacctionIcons {
|
34
34
|
text-align: right;
|
35
|
-
|
35
|
+
inline-size: max-content;
|
36
|
+
display: inline-flex;
|
37
|
+
/* width: max-content;
|
36
38
|
inline-size: max-content;
|
37
39
|
height: max-content;
|
38
40
|
block-size: max-content;
|
39
41
|
display: block;
|
40
42
|
float: right;
|
41
|
-
min-width: 100%
|
43
|
+
min-width: 100% */
|
42
44
|
}
|
43
45
|
|
44
46
|
.tr-content:hover {
|
package/package.json
CHANGED
package/pages/Login/Login.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import React, { useState } from 'react'
|
2
2
|
import PropTypes from 'prop-types'
|
3
|
-
|
3
|
+
import { useRouter } from 'next/router'
|
4
4
|
import styles from './Login.module.css'
|
5
5
|
import { options } from './constants'
|
6
6
|
import withStyles from '../../hocs/withStyles'
|
@@ -17,7 +17,7 @@ import { loginSchema } from './validation/loginSchema'
|
|
17
17
|
export const Login = ({ children, getStyles }) => {
|
18
18
|
|
19
19
|
|
20
|
-
|
20
|
+
const router = useRouter()
|
21
21
|
// const [formValues, setFormValues] = useState({})
|
22
22
|
|
23
23
|
// const onChange = (key) => (event) => {
|
@@ -34,7 +34,7 @@ export const Login = ({ children, getStyles }) => {
|
|
34
34
|
<CenteredContent >
|
35
35
|
|
36
36
|
<Picture
|
37
|
-
src="
|
37
|
+
src={router.basePath + "/static/logologin.svg"}
|
38
38
|
width={170}
|
39
39
|
/>
|
40
40
|
|