diff --git a/app/views/puzzles/_form.html.erb b/app/views/puzzles/_form.html.erb
index 8689dba..840a21a 100644
--- a/app/views/puzzles/_form.html.erb
+++ b/app/views/puzzles/_form.html.erb
@@ -1,7 +1,7 @@
<%= form_with model: puzzle do |f| %>
<%= f.label :question %>
- <%= f.text_area :question, class: puzzle.errors[:question].any? ? "error" : "" %>
+ <%= f.text_area :question, class: puzzle.errors[:question].any? ? "error" : "", rows: 10, cols: 40 %>
<% if puzzle.errors[:question].any? %>
<%= puzzle.errors[:question].first %>
<% end %>
@@ -21,7 +21,7 @@
<%= f.label :explanation %>
- <%= f.text_area :explanation %>
+ <%= f.text_area :explanation, rows: 10, cols: 40 %>
diff --git a/app/views/puzzles/update.turbo_stream.erb b/app/views/puzzles/update.turbo_stream.erb
index c771aad..8f26218 100644
--- a/app/views/puzzles/update.turbo_stream.erb
+++ b/app/views/puzzles/update.turbo_stream.erb
@@ -1,7 +1,7 @@
- | <%= @puzzle.question %> |
+ <%= simple_format(@puzzle.question) %> |
<%= @puzzle.answer %> |
<%= @puzzle.explanation %> |
@@ -22,4 +22,4 @@
-
\ No newline at end of file
+
|