bfg-common 1.3.438 → 1.3.439

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.
@@ -274,7 +274,11 @@ const hideMainMenu = (): void => {
274
274
 
275
275
  &.active {
276
276
  background-color: var(--vertical-active-nav-bg-color);
277
- color: #ffffff;
277
+ color: var(--vertical-active-nav-color);
278
+
279
+ .nav-text {
280
+ color: var(--vertical-active-nav-color);
281
+ }
278
282
  }
279
283
 
280
284
  &:not(.active):hover {
@@ -306,11 +310,13 @@ const hideMainMenu = (): void => {
306
310
  --vertical-nav-item-color: #4d5d69;
307
311
  --vertical-nav-hover-bg-color: #d3d6da;
308
312
  --vertical-active-nav-bg-color: #213444;
313
+ --vertical-active-nav-color: #ffffff;
309
314
  }
310
315
  :root.dark-theme {
311
316
  --vertical-nav-bg-color: rgba(33, 52, 68, 0.96);
312
317
  --vertical-nav-item-color: #ffffff;
313
318
  --vertical-nav-hover-bg-color: #485865;
314
- --vertical-active-nav-bg-color: #213444;
319
+ --vertical-active-nav-bg-color: rgba(233, 235, 237, 0.96);
320
+ --vertical-active-nav-color: #213444;
315
321
  }
316
322
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.438",
4
+ "version": "1.3.439",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",