Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/pages/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default function Pages({
{screenshots[idx] ? (
<div className="flex-shrink-0 hidden sm:block">
<img
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"
src={screenshots[idx]}
alt={`Screenshot of ${page.title}`}
loading="lazy"
Expand Down
2 changes: 1 addition & 1 deletion apps/web/utils/capture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function getPageScreenshotUrl(url: string) {

return capture.buildImageUrl(url, {
vw: 1280,
vh: 720,
vh: 640,
scaleFactor: 1.5,
});
}