namirasoft-site-react 1.3.400 → 1.3.402

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.
@@ -42,8 +42,6 @@
42
42
  padding: 16px;
43
43
  border-radius: 0 8px 8px 8px;
44
44
  background-color: #fff;
45
- display: grid;
46
- grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
47
45
  gap: 0;
48
46
  border-right: 1px solid #ccc;
49
47
  }
@@ -187,9 +187,9 @@
187
187
  .ns_table td {
188
188
  word-break: break-all;
189
189
  color: #000;
190
- height: 100%;
190
+ height: max-content;
191
191
  justify-content: left;
192
- max-height: max-content;
192
+ max-height: 50px;
193
193
  display: -webkit-box;
194
194
  -webkit-line-clamp: 2;
195
195
  -webkit-box-orient: vertical;
@@ -31,15 +31,23 @@
31
31
 
32
32
  .ns_tag_input_container {
33
33
  display: flex;
34
- flex-direction: column;
34
+ flex-direction: row;
35
+ flex-wrap: wrap;
35
36
  justify-content: left;
36
- align-items: flex-start;
37
+ align-items: center;
37
38
  gap: 16px;
38
39
  }
39
40
 
40
41
  .ns_tag_input_group {
41
42
  display: flex;
42
- flex-direction: row;
43
+ flex-direction: column;
43
44
  gap: 16px;
45
+ justify-content: center;
46
+ align-items: center;
47
+ }
44
48
 
49
+ @media only screen and (min-width:1100px) {
50
+ .ns_tag_input_group {
51
+ flex-direction: row;
52
+ }
45
53
  }
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.3.400",
11
+ "version": "1.3.402",
12
12
  "author": "Amir Abolhasani, Alireza Esmaeeli, Sepideh Mazloumi, Hooman Shashaeh, Mehrab Bahramian",
13
13
  "license": "MIT",
14
14
  "main": "./dist/main.js",
@@ -42,8 +42,6 @@
42
42
  padding: 16px;
43
43
  border-radius: 0 8px 8px 8px;
44
44
  background-color: #fff;
45
- display: grid;
46
- grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
47
45
  gap: 0;
48
46
  border-right: 1px solid #ccc;
49
47
  }
@@ -187,9 +187,9 @@
187
187
  .ns_table td {
188
188
  word-break: break-all;
189
189
  color: #000;
190
- height: 100%;
190
+ height: max-content;
191
191
  justify-content: left;
192
- max-height: max-content;
192
+ max-height: 50px;
193
193
  display: -webkit-box;
194
194
  -webkit-line-clamp: 2;
195
195
  -webkit-box-orient: vertical;
@@ -31,15 +31,23 @@
31
31
 
32
32
  .ns_tag_input_container {
33
33
  display: flex;
34
- flex-direction: column;
34
+ flex-direction: row;
35
+ flex-wrap: wrap;
35
36
  justify-content: left;
36
- align-items: flex-start;
37
+ align-items: center;
37
38
  gap: 16px;
38
39
  }
39
40
 
40
41
  .ns_tag_input_group {
41
42
  display: flex;
42
- flex-direction: row;
43
+ flex-direction: column;
43
44
  gap: 16px;
45
+ justify-content: center;
46
+ align-items: center;
47
+ }
44
48
 
49
+ @media only screen and (min-width:1100px) {
50
+ .ns_tag_input_group {
51
+ flex-direction: row;
52
+ }
45
53
  }