teleport(:to="appContainer")
.absolute.bottom-0.p-2.right-0.overflow-hidden.z-50(class="w-1/4 xl:w-1/3 sm:w-1/2")
.pt-32(v-if="displayPadding")
.flex.gap-2.flex-col.relative
transition-group(name="list", @before-leave="displayPadding = true", @after-leave="displayPadding = false")
notification-item(
v-for="[id, notification] in notificationsList",
:id="id",
:key="id",
:title="notification.title",
:message="notification.message",
:type="notification.type"
:life-time="notification.lifeTime"
)