feat: improve background transparency for UI components

This commit is contained in:
Huakun Shen 2025-02-19 08:30:58 -05:00
parent b9b4ef54c3
commit e650afdb14
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@
const workflowRunUrl = `https://github.com/${repoOwner}/${repoName}/actions/runs/${workflowRunId}/workflow`
</script>
<Card.Root>
<Card.Root class="bg-background/30">
<Card.Content class="flex flex-col items-center justify-between space-x-4 md:flex-row">
<div class="flex w-60 items-center space-x-4">
<BadgeCheckIcon class="h-8 w-8 text-green-500" />

View File

@ -308,7 +308,7 @@
<Separator class="my-3" />
<h2 class="text-lg font-bold">README</h2>
{#if extPublish?.readme}
<Markdown markdown={extPublish.readme} class="bg-secondary max-w-full rounded-md p-4" />
<Markdown markdown={extPublish.readme} class="bg-background/50 max-w-full rounded-md p-4" />
{/if}
</ScrollArea>

View File

@ -5,6 +5,6 @@
const { markdown, class: className }: { markdown: string; class?: string } = $props()
</script>
<div class={cn("prose dark:prose-invert", className)}>
<div class={cn("prose dark:prose-invert bg-transparent", className)}>
<SvelteMarkdown source={markdown} />
</div>