Skip to content

Commit

Permalink
fix tournament form faq section style
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Jun 29, 2024
1 parent c057b22 commit 84ccdd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/tournament/src/main/ui/TournamentForm.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ final class TournamentForm(val helpers: Helpers, showUi: TournamentShow)(
given prefix: FormPrefix = FormPrefix.empty
val fields = tourFields(form, none)
Page(trans.site.newTournament.txt())
.css("tournament.form")
.css("tournament.form", "bits.page")
.js(EsmInit("bits.tourForm")):
main(cls := "page-small")(
div(cls := "tour__form box box-pad")(
Expand All @@ -55,7 +55,7 @@ final class TournamentForm(val helpers: Helpers, showUi: TournamentShow)(
)
)
),
div(cls := "box box-pad tour__faq")(showUi.faq.pageContent)
div(cls := "box box-pad tour__faq page")(div(cls := "body")(showUi.faq()))
)

def edit(tour: Tournament, form: Form[?], myTeams: List[LightTeam])(using Context) =
Expand Down

0 comments on commit 84ccdd3

Please sign in to comment.