mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
feat: improve background transparency for UI components
This commit is contained in:
parent
b9b4ef54c3
commit
e650afdb14
@ -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" />
|
||||
|
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user