${quote.content.replace(/\n/g, '
')}
diff --git a/src/app.ts b/src/app.ts index f49b619..02a7e10 100644 --- a/src/app.ts +++ b/src/app.ts @@ -63,17 +63,15 @@ function renderQuotes(page: number): void { container.innerHTML = ''; quotesCache[page].forEach((quote) => { const card = document.createElement('div'); - card.className = 'column is-half'; + card.className = 'box'; card.innerHTML = ` -
${quote.content.replace(/\n/g, '
')}