Revert to 50/50 image/text column split

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Aaron Roberts
2026-06-09 18:10:51 +01:00
parent 6f86f872a9
commit 3ca40a2255
2 changed files with 2 additions and 2 deletions

View File

@@ -239,7 +239,7 @@ function App() {
className="flex flex-col gap-4"
>
{/* Image + Text */}
<div className="grid gap-6" style={{ gridTemplateColumns: '3fr 2fr', height: '65vh' }}>
<div className="grid gap-6" style={{ gridTemplateColumns: '1fr 1fr', height: '65vh' }}>
{imagePreview && typeof imagePreview === 'string' ? (
<div className="glass rounded-2xl overflow-hidden flex items-center justify-center bg-black/20 h-full">
<img

View File

@@ -141,7 +141,7 @@ function JobDetail({ jobId, onClose, onReviewed }) {
{job && !loading && (
<>
{/* Image + Text */}
<div className="grid gap-6" style={{ gridTemplateColumns: '3fr 2fr', height: '65vh' }}>
<div className="grid gap-6" style={{ gridTemplateColumns: '1fr 1fr', height: '65vh' }}>
<div className="glass rounded-2xl overflow-hidden flex items-center justify-center bg-black/20 h-full">
<img
src={`${API_BASE}/jobs/${job.id}/image`}