Move notifications to the bottom of the screen for builder only (not client apps)

This commit is contained in:
Andrew Kingston 2022-07-11 13:12:14 +01:00
parent e00c91c8a6
commit bdd5ec42d7
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
<Portal target=".modal-container"> <Portal target=".modal-container">
<div class="notifications"> <div class="notifications">
{#each $notifications as { type, icon, message, id, dismissable, action, wide } (id)} {#each $notifications as { type, icon, message, id, dismissable, action, wide } (id)}
<div transition:fly={{ y: -30 }}> <div transition:fly={{ y: 30 }}>
<Notification <Notification
{type} {type}
{icon} {icon}
@ -27,7 +27,7 @@
<style> <style>
.notifications { .notifications {
position: fixed; position: fixed;
top: 20px; bottom: 40px;
left: 0; left: 0;
right: 0; right: 0;
margin: 0 auto; margin: 0 auto;