diff --git a/packages/frontend/src/components/UINotificationDisplay.vue b/packages/frontend/src/components/UINotificationDisplay.vue index 33f7366..0617deb 100644 --- a/packages/frontend/src/components/UINotificationDisplay.vue +++ b/packages/frontend/src/components/UINotificationDisplay.vue @@ -35,19 +35,19 @@ const getContainerClass = (type: string) => { v-for="notification in notifications" :key="notification.id" :class="[ - 'flex items-center p-3 mb-2 rounded shadow-md min-w-[250px] max-w-[400px] opacity-95 text-white', + 'flex items-center p-3 mb-2 rounded shadow-md min-w-[250px] max-w-[400px] opacity-95 text-white', { 'bg-green-600': notification.type === 'success', 'bg-red-600': notification.type === 'error', 'bg-blue-600': notification.type === 'info', - 'bg-yellow-500 text-gray-800': notification.type === 'warning', // Warning text color adjusted + 'bg-yellow-500 text-gray-800': notification.type === 'warning', } ]" > - + {{ notification.message }}