@kodaris/krubble-app-components 1.0.26 → 1.0.28

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.
@@ -1304,7 +1304,7 @@
1304
1304
  this.navQuery = '';
1305
1305
  this.activeNavItemId = null;
1306
1306
  this.isNavScrolled = false;
1307
- this.isNavOpened = true;
1307
+ this.isNavOpened = localStorage.getItem('kr-scaffold-nav-opened') !== 'false';
1308
1308
  this.isEditing = false;
1309
1309
  this.isUserMenuOpen = false;
1310
1310
  this.pref = { nav: {} };
@@ -1567,6 +1567,7 @@
1567
1567
  // =========================================================================
1568
1568
  handleMenuClick() {
1569
1569
  this.isNavOpened = !this.isNavOpened;
1570
+ localStorage.setItem('kr-scaffold-nav-opened', String(this.isNavOpened));
1570
1571
  }
1571
1572
  /**
1572
1573
  * Handles click on the nav header (logo/title) to navigate home.
@@ -2420,8 +2421,7 @@
2420
2421
  }
2421
2422
 
2422
2423
  .nav-header {
2423
- height: 64px;
2424
- padding: 0 20px;
2424
+ padding: 20px;
2425
2425
  display: flex;
2426
2426
  align-items: center;
2427
2427
  position: relative;
@@ -2444,9 +2444,6 @@
2444
2444
  font-weight: 600;
2445
2445
  color: var(--kr-scaffold-nav-text-active);
2446
2446
  letter-spacing: .2px;
2447
- white-space: nowrap;
2448
- overflow: hidden;
2449
- text-overflow: ellipsis;
2450
2447
  }
2451
2448
 
2452
2449
  .nav-search {
@@ -2635,7 +2632,7 @@
2635
2632
  flex: 1;
2636
2633
  min-width: 0;
2637
2634
  overflow-y: auto;
2638
- background: #FCFCFD;
2635
+ background: transparent;
2639
2636
  display: flex;
2640
2637
  flex-direction: column;
2641
2638
  }