1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-21 18:02:32 +01:00

Merge pull request #179 from spacebarchat/fix/embed_sizing

Remove grid-template-columns: min-content on embeds
This commit is contained in:
Puyodead1 2023-09-16 12:31:36 -04:00 committed by GitHub
commit 97fe9f663b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,12 +31,12 @@ const Wrapper = styled.div<{ $color?: string }>`
border-radius: 4px;
`;
const EmbedWrapper = styled.div<{ isArticle?: boolean }>`
const EmbedWrapper = styled.div`
max-width: 500px;
overflow: hidden;
padding: 8px 16px 16px 12px;
display: grid;
grid-template-columns: ${(props) => (props.isArticle ? "min-content" : "auto")};
grid-template-columns: auto;
grid-template-rows: auto;
`;
@ -244,7 +244,7 @@ export default function MessageEmbed({ embed, contextMenuItems }: EmbedProps) {
return (
<Container>
<Wrapper $color={embed.color ? decimalColorToHex(embed.color) : undefined}>
<EmbedWrapper isArticle={embed.type === EmbedType.Article}>
<EmbedWrapper>
{embed.provider && <EmbedProvider>{embed.provider.name}</EmbedProvider>}
{author && <EmbedAuthor>{author}</EmbedAuthor>}
{title && <EmbedTitle>{title}</EmbedTitle>}