💄 Update poster styling

This commit is contained in:
ajnart
2022-05-25 18:26:13 +02:00
parent 3f2aa50f85
commit 4026d0b6be

View File

@@ -32,19 +32,20 @@ function MediaDisplay(props: { media: IMedia }) {
height={400}
/>
)}
<Group direction="row">
<Title order={3}>{media.title}</Title>
{media.imdbId && (
<Anchor
href={`https://www.imdb.com/title/${media.imdbId}`}
target="_blank"
rel="noopener noreferrer"
>
<ActionIcon>
<Link />
</ActionIcon>
</Anchor>
)}
<Group direction="column">
<Group style={{ minWidth: 400 }}>
<Title order={3}>{media.title}</Title>
{media.imdbId && (
<Anchor
href={`https://www.imdb.com/title/${media.imdbId}`}
target="_blank"
>
<ActionIcon>
<Link />
</ActionIcon>
</Anchor>
)}
</Group>
{media.artist && (
<Text
style={{