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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imbric-theme",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "description": "Components library IMBRIC",
5
5
  "private": false,
6
6
  "main": "index.js",
@@ -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="./static/logologin.svg"
37
+ src={router.basePath + "/static/logologin.svg"}
38
38
  width={170}
39
39
  />
40
40