aboutsummaryrefslogtreecommitdiff
path: root/lume/src/_components/XeblogConv.tsx
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2024-05-15 12:08:46 -0500
committerXe Iaso <me@xeiaso.net>2024-05-15 12:08:46 -0500
commitab2fbe45331236ddb4d3cbb2e1bfc3964757ec88 (patch)
treea9006fa1a90a257ea23c178b8ccd70466df40fcb /lume/src/_components/XeblogConv.tsx
parente278b21155d792d7172acc15b2137dae7ed0fda1 (diff)
downloadxesite-ab2fbe45331236ddb4d3cbb2e1bfc3964757ec88.tar.xz
xesite-ab2fbe45331236ddb4d3cbb2e1bfc3964757ec88.zip
my kubernetes adventure
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'lume/src/_components/XeblogConv.tsx')
-rw-r--r--lume/src/_components/XeblogConv.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lume/src/_components/XeblogConv.tsx b/lume/src/_components/XeblogConv.tsx
index 45443d7..5d783b9 100644
--- a/lume/src/_components/XeblogConv.tsx
+++ b/lume/src/_components/XeblogConv.tsx
@@ -15,14 +15,14 @@ const ConvSnippet = ({
}: XeblogConvProps) => {
const nameLower = name.toLowerCase();
name = name.replace(" ", "_");
- const size = standalone ? 128 : 64;
+ const size = standalone ? 256 : 128;
return (
<>
<div className="my-4 flex space-x-4 rounded-md border border-solid border-fg-4 bg-bg-2 p-3 dark:border-fgDark-4 dark:bg-bgDark-2 max-w-full min-h-fit">
<div className="flex max-h-16 shrink-0 items-center justify-center self-center">
<img
- style="max-height:6rem"
+ style={`max-height:${standalone ? "6" : "4"}rem`}
alt={`${name} is ${mood}`}
loading="lazy"
src={`https://cdn.xeiaso.net/sticker/${nameLower}/${mood}/${size}`}