Small textual updates

This commit is contained in:
Charlotte Van Petegem 2025-05-25 10:51:09 +02:00
parent f7aab26c85
commit bb68f8541a
Signed by: chvp
SSH key fingerprint: SHA256:s9rb8jBVfdahqWHuBAcHCBP1wmj4eYQXZfqgz4H3E9E
4 changed files with 48 additions and 41 deletions

View file

@ -132,7 +132,7 @@ input[type=submit] {
}
.acrostic-puzzle {
overflow-x: scroll;
overflow-x: auto;
}
.acrostic-row {

View file

@ -1,11 +1,11 @@
class SectionsController < ApplicationController
def index
@sections = Section.all
@sections = Section.all.order(id: :asc)
end
def show
@sections = Section.all
@section = Section.find(params[:id])
@questions = @section.questions.includes(:answer)
@questions = @section.questions.includes(:answer).order(id: :asc)
end
end