opa
Browse files
src/lib/components/Layout/TabBar.svelte
CHANGED
|
@@ -94,11 +94,12 @@
|
|
| 94 |
width: 32px;
|
| 95 |
height: 32px;
|
| 96 |
object-fit: contain;
|
| 97 |
-
|
|
|
|
| 98 |
}
|
| 99 |
|
| 100 |
.tab-item.active .tab-icon {
|
| 101 |
-
|
| 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 |
|