bfg-common 1.3.90 → 1.3.91

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.
@@ -149,7 +149,7 @@
149
149
 
150
150
  --main-color-mode: #{$light-white};
151
151
 
152
- --modal-bg-color: #29414e;
152
+ --modal-bg-color: #{$--blue-800};
153
153
  --modal-other-bg-color: #22343c;
154
154
 
155
155
  --close-icon: #{$light-grey};
@@ -94,9 +94,9 @@ onUnmounted(() => {
94
94
  }
95
95
  .move-separator {
96
96
  position: absolute;
97
- height: 400px;
98
- background-color: white;
99
97
  width: 3px;
98
+ height: 400px;
99
+ background-color: var(--modal-bg-color);
100
100
  cursor: e-resize;
101
101
  }
102
102
  </style>
@@ -8,8 +8,8 @@
8
8
  ]"
9
9
  @click="onSelectFile(file)"
10
10
  >
11
- <span :class="file.iconClassName"></span>
12
- <span>{{ file.name }}</span>
11
+ <span class="file-view__icon" :class="file.iconClassName"></span>
12
+ <span class="file-view__text">{{ file.name }}</span>
13
13
  </li>
14
14
  </template>
15
15
  </ul>
@@ -64,5 +64,8 @@ const onSelectFile = (file: any) => {
64
64
  }
65
65
  }
66
66
  }
67
+ &__text {
68
+ color: var(--global-font-color9);
69
+ }
67
70
  }
68
71
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.90",
4
+ "version": "1.3.91",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",