We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be522a5 + 10aa7f4 commit c7bbbebCopy full SHA for c7bbbeb
2 files changed
apps/web/pages/pages/index.tsx
@@ -130,7 +130,7 @@ export default function Pages({
130
{screenshots[idx] ? (
131
<div className="flex-shrink-0 hidden sm:block">
132
<img
133
- className="w-48 h-18 object-cover rounded-md border border-gray-200 dark:border-gray-700"
+ className="w-40 h-28 object-cover rounded-md border border-gray-200 dark:border-gray-700"
134
src={screenshots[idx]}
135
alt={`Screenshot of ${page.title}`}
136
loading="lazy"
apps/web/utils/capture.ts
@@ -8,7 +8,7 @@ export function getPageScreenshotUrl(url: string) {
8
9
return capture.buildImageUrl(url, {
10
vw: 1280,
11
- vh: 720,
+ vh: 640,
12
scaleFactor: 1.5,
13
});
14
}
0 commit comments