Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion webview-ui/src/components/welcome/WelcomeViewProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ const WelcomeViewProvider = () => {
if (selectedProvider === null) {
return (
<Tab>
<TabContent className="flex flex-col gap-4 p-6 justify-center">
<TabContent className="relative flex flex-col gap-4 p-6 justify-center">
<RooHero />
<h2 className="mt-0 mb-0 text-xl">{t("welcome:landing.greeting")}</h2>

Expand All @@ -312,6 +312,14 @@ const WelcomeViewProvider = () => {
{t("welcome:landing.noAccount")}
</VSCodeLink>
</div>

<div className="absolute bottom-6 left-6">
<button
onClick={() => vscode.postMessage({ type: "importSettings" })}
className="cursor-pointer bg-transparent border-none p-0 text-vscode-foreground hover:underline">
{t("welcome:importSettings")}
</button>
</div>
</TabContent>
</Tab>
)
Expand Down
Loading