Skip to content

Commit f6cae9d

Browse files
committed
style(og): scale down the VS graphic (150->110px) for better balance
1 parent a2ed360 commit f6cae9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/og/renderOgImage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function logoImage(imgRelPath: string, box = 180): { src: string; width: number;
6060
// The "VS" graphic (raster PNG with transparency) used between the two columns.
6161
// Cached; sized to a target height preserving its native aspect ratio.
6262
let vsCache: { src: string; width: number; height: number } | null = null;
63-
function vsImage(targetHeight = 150): { src: string; width: number; height: number } {
63+
function vsImage(targetHeight = 110): { src: string; width: number; height: number } {
6464
if (!vsCache) {
6565
const buf = readFileSync(path.join(OG_ASSET_DIR, "vs.png"));
6666
const natW = buf.readUInt32BE(16);

0 commit comments

Comments
 (0)