Skip to content

Commit

Permalink
fix: bug with input slot not showing (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala authored Oct 10, 2024
1 parent 0c196e9 commit f49ab7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/sourceCard/SourceCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default function SourceCard({
<h2
className={`${
source && 'absolute bottom-4'
} p-1 text-p text-xs bg-zinc-900 w-full bg-opacity-90 ${
} p-1 text-p text-xs bg-zinc-900 w-full bg-opacity-90 z-10 ${
sourceRef && !source && 'absolute bottom-0'
}`}
>
Expand All @@ -106,7 +106,7 @@ export default function SourceCard({
</h2>
)}
{source && (
<h2 className="absolute bottom-0 text-p text-xs bg-zinc-900 w-full bg-opacity-90">
<h2 className="z-10 px-1 absolute bottom-0 text-p text-xs bg-zinc-900 w-full bg-opacity-90">
{t('source.ingest', {
ingest: source.ingest_name
})}
Expand Down

0 comments on commit f49ab7b

Please sign in to comment.