Fraser commited on
Commit
21965b1
·
1 Parent(s): 9218f2c
src/lib/components/Layout/TabBar.svelte CHANGED
@@ -94,11 +94,12 @@
94
  width: 32px;
95
  height: 32px;
96
  object-fit: contain;
97
- filter: grayscale(100%) brightness(0.7);
 
98
  }
99
 
100
  .tab-item.active .tab-icon {
101
- filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(192deg) brightness(104%) contrast(97%);
102
  }
103
 
104
 
 
94
  width: 32px;
95
  height: 32px;
96
  object-fit: contain;
97
+ opacity: 0.4;
98
+ transition: opacity 0.2s;
99
  }
100
 
101
  .tab-item.active .tab-icon {
102
+ opacity: 1;
103
  }
104
 
105