diff --git a/src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)/empty.svelte b/src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)/empty.svelte index cb76163a0..b98c99ca6 100644 --- a/src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)/empty.svelte +++ b/src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)/empty.svelte @@ -856,11 +856,16 @@ {/if} - + {creatingColumns - ? 'Creating columns...' - : 'Review and edit suggested columns'} - + ? 'Creating columns' + : $isSmallViewport + ? 'Review and edit suggested columns' + : 'Review and edit suggested columns before applying'} + @@ -1031,8 +1036,17 @@ } &.creating-columns :global(:first-child) { - left: calc(50% - 300px / 2); + left: calc(67.5% - 525px / 2); max-width: 300px !important; + + @media (max-width: 1024px) { + left: calc(60% - 300px / 2); + } + + @media (max-width: 768px) { + left: calc(50% - 400px / 2); + max-width: 400px !important; + } } }