Skip to content

Commit eff387c

Browse files
committed
fix(hub-ui): preserve toast background on hover
1 parent 81054e2 commit eff387c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/hub-ui/src/client/components/display/ToastOverlay.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ function dispatchAction(action: DevframeMessageAction) {
5454
<div
5555
v-for="toast of toasts"
5656
:key="toast.id"
57-
class="bg-glass:80 border color-base border-base shadow-xl cursor-pointer hover:bg-active transition-colors rounded"
57+
class="bg-glass:80 border color-base border-base shadow-xl cursor-pointer transition-colors rounded"
5858
@click="openMessages(toast.id)"
5959
>
60-
<MessageItem :entry="toast.entry" compact class="px-3 py-2.5">
60+
<MessageItem :entry="toast.entry" compact class="px-3 py-2.5 hover:bg-active">
6161
<template #actions>
6262
<button
6363
v-for="action of toast.entry.actions"

0 commit comments

Comments
 (0)