We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 614b2a6 commit 78a3563Copy full SHA for 78a3563
app.js
@@ -173,7 +173,7 @@ function sendNote() {
173
localStorage.setItem('noteCount', noteCount);
174
175
// Format and set the note list for display
176
- let noteList = notes.map(note => `<h1>By: ${note.user}</h1><p><label>Note: </label>${note.content}</p><hr><br>`).join('');
+ let noteList = notes.map(note => `<h1 style="text-align: center; display: grid;">By: ${note.user}</h1><p><label>Note: </label>${note.content}</p><hr><br>`).join('');
177
localStorage.setItem('noteList', noteList);
178
}
179
0 commit comments