Revert to 50/50 image/text column split
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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`}
|
||||
|
||||
Reference in New Issue
Block a user