SteveYuOWO / vue-hot-toast

🍞 A neat toast for vue3
MIT License
35 stars 5 forks source link

feat: Support for changing position #3

Closed SteveYuOWO closed 1 month ago

SteveYuOWO commented 11 months ago

The current implementation of the Vue Hot Toast library doesn't provide an option to change the position of toast notifications on the screen. It's essential to have a feature that allows custom positioning of toast notifications like top-center, bottom-left, bottom-right, etc., to provide flexibility in how toast notifications are displayed in different application layouts.

TODO: Support for changing position, like top-center... etc 6 positions of screen

j0rgedev commented 6 months ago

I'll be reviewing this

aminnausin commented 4 months ago

Editing the "@steveyuowo/vue-hot-toast/vue-hot-toast.css" file directly from

.VueHotToast__toast-container { top: 0; left: 0; width: 100%; }

to

.VueHotToast__toast-container { bottom: 0; right: 0; }

is the easy fix until an update is released (for bottom right in my case)

HarryZ10 commented 3 months ago

@SteveYuOWO i cooked today :)

HarryZ10 commented 3 months ago

@SteveYuOWO