diff --git a/src/App.css b/src/App.css index 281e2ee..04a43e5 100644 --- a/src/App.css +++ b/src/App.css @@ -1672,6 +1672,10 @@ font-size: 0.73rem; } +.study-classroom-main { + min-width: 0; +} + .study-classroom-main h1 { margin: 0.35rem 0 0; } diff --git a/src/colossiansStudy.tsx b/src/colossiansStudy.tsx index c680324..57a72cd 100644 --- a/src/colossiansStudy.tsx +++ b/src/colossiansStudy.tsx @@ -1751,7 +1751,7 @@ export function ColossiansStudySectionPage({ content }: Props) { )} {section.checkpointPrompt &&
{section.checkpointPrompt}
} -{question}
@@ -1760,7 +1760,7 @@ export function ColossiansStudySectionPage({ content }: Props) { value={checkpointAnswers[index] ?? ''} onChange={e => setCheckpointAnswers(prev => ({ ...prev, [index]: e.target.value }))} placeholder="Write your answer here..." - style={{ width: '100%', padding: '0.85rem 1rem', borderRadius: '12px', border: `1px solid ${(checkpointAnswers[index] ?? '').trim() ? '#2a4a2a' : '#2a2518'}`, background: '#14130f', color: '#f0ead8' }} + style={{ width: '100%', boxSizing: 'border-box', resize: 'vertical', padding: '0.85rem 1rem', borderRadius: '12px', border: `1px solid ${(checkpointAnswers[index] ?? '').trim() ? '#2a4a2a' : '#2a2518'}`, background: '#14130f', color: '#f0ead8' }} />