aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/components/AppMenuIcon.vue
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/components/AppMenuIcon.vue')
-rw-r--r--core/src/components/AppMenuIcon.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/components/AppMenuIcon.vue b/core/src/components/AppMenuIcon.vue
index bdf14cdd0d7..ced3bf8eed3 100644
--- a/core/src/components/AppMenuIcon.vue
+++ b/core/src/components/AppMenuIcon.vue
@@ -8,7 +8,7 @@
role="img"
:aria-hidden="ariaHidden"
:aria-label="ariaLabel">
- <img class="app-menu-icon__icon" :src="app.icon">
+ <img class="app-menu-icon__icon" :src="app.icon" alt="">
<IconDot v-if="app.unread" class="app-menu-icon__unread" :size="10" />
</span>
</template>
@@ -58,6 +58,7 @@ $unread-indicator-size: 10px;
position: absolute;
inset-block-end: calc($unread-indicator-size / -2.5);
inset-inline-end: calc($unread-indicator-size / -2.5);
+ transition: all 0.1s ease-in-out;
}
}
</style>