@saooti/octopus-sdk 41.0.10 → 41.0.11

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "41.0.10",
3
+ "version": "41.0.11",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -239,6 +239,9 @@ defineExpose({
239
239
  height: 100%;
240
240
  }
241
241
 
242
+ .vs__search, .vs__search:focus{
243
+ border: var(--vs-selected-border-width) solid transparent;
244
+ }
242
245
  .vs__search:focus {
243
246
  min-width: 150px;
244
247
  }
@@ -36,4 +36,7 @@
36
36
  --octopus-border-radius: 0.2rem;
37
37
  --octopus-line-clamp:2;
38
38
  --octopus-max-height-description: 7rem;
39
+
40
+ //Font-family
41
+ --octopus-font-family: Montserrat,sans-serif,"Helvetica Neue";
39
42
  }
@@ -1,5 +1,6 @@
1
1
  /** Document style */
2
2
 
3
+
3
4
  html{
4
5
  font-size: 20px;
5
6
  height: 100%;
@@ -9,7 +10,7 @@ html{
9
10
  body{
10
11
  margin: 0;
11
12
  color: var(--octopus-color-text);
12
- font-family: Montserrat,sans-serif,"Helvetica Neue";
13
+ font-family: var(--octopus-font-family);
13
14
  font-size: 0.8rem;
14
15
  overflow-x: hidden;
15
16
  background: var(--octopus-secondary-lighter);
@@ -42,6 +43,10 @@ main, #app{
42
43
  align-items: center;
43
44
  }
44
45
 
46
+ input {
47
+ font-family: var(--octopus-font-family);
48
+ }
49
+
45
50
  /** Link style */
46
51
  a{
47
52
  word-break: break-word;