imbric-theme 0.6.4 → 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/Picture/Picture.js +9 -2
- package/atoms/Toggle/Toggle.js +7 -6
- package/layout/Sidebar/Sidebar.js +7 -3
- package/molecules/ColumnTable/ColumnTable.js +101 -95
- package/molecules/ColumnTable/ColumnTable.module.css +13 -1
- package/molecules/InputAutocomplete/InputAutocomplete.js +8 -5
- package/molecules/RowTable/RowTable.js +482 -455
- package/molecules/RowTable/RowTable.module.css +13 -1
- package/package.json +1 -1
- package/pages/Login/Login.js +3 -3
@@ -12,13 +12,16 @@
|
|
12
12
|
}
|
13
13
|
|
14
14
|
.td {
|
15
|
-
padding: 15px;
|
15
|
+
padding: 6px 0px 6px 15px;
|
16
16
|
text-align: left;
|
17
17
|
vertical-align: middle;
|
18
18
|
font-weight: 300;
|
19
19
|
font-size: 12px;
|
20
20
|
color: var(--color-font-base);
|
21
21
|
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
|
22
|
+
overflow: hidden;
|
23
|
+
text-overflow: ellipsis;
|
24
|
+
/* white-space: nowrap; */
|
22
25
|
}
|
23
26
|
|
24
27
|
.tdacction {
|
@@ -29,6 +32,15 @@
|
|
29
32
|
|
30
33
|
.tdacctionIcons {
|
31
34
|
text-align: right;
|
35
|
+
inline-size: max-content;
|
36
|
+
display: inline-flex;
|
37
|
+
/* width: max-content;
|
38
|
+
inline-size: max-content;
|
39
|
+
height: max-content;
|
40
|
+
block-size: max-content;
|
41
|
+
display: block;
|
42
|
+
float: right;
|
43
|
+
min-width: 100% */
|
32
44
|
}
|
33
45
|
|
34
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
|
|