Skip to content

Commit

Permalink
fix: limit width of home page
Browse files Browse the repository at this point in the history
  • Loading branch information
FreekBes committed Nov 4, 2024
1 parent 9bc57ab commit 91610d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/home.njk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% block content %}
{% if not quiz_available %}
{# This section is only displayed when the quiz is not available. #}
<div class="container-lg">
<div class="container-lg mw-900">
<div class="card w-100 mb-4" id="leaderboards">
<div class="card-header pe-2 d-flex align-items-center" style="background-color: #6c757d;">
<div class="d-inline-block pe-3 lh-lg flex-grow-1" style="color: #fff; font-weight: bold;">Leaderboards</div>
Expand Down Expand Up @@ -72,7 +72,7 @@
</div>
{% else %}
{# This section is only displayed when the quiz is available. #}
<div class="container-lg">
<div class="container-lg mw-900">
<div class="card w-100 mb-4" id="quiz-availability">
<div class="card-header pe-2 d-flex align-items-center" style="background-color: #6c757d;">
<div class="d-inline-block pe-3 lh-lg flex-grow-1" style="color: #fff; font-weight: bold;">Questionnaire is currently open</div>
Expand Down Expand Up @@ -114,7 +114,7 @@
{% endfor %}
</div>
{% endif %}
<div class="container-lg">
<div class="container-lg mw-900">
<div class="card w-100 mb-4" id="help-development">
<div class="card-header pe-2 d-flex align-items-center" style="background-color: #6c757d;">
<div class="d-inline-block pe-3 lh-lg flex-grow-1" style="color: #fff; font-weight: bold;">Contribute to the coalition system</div>
Expand Down

0 comments on commit 91610d6

Please sign in to comment.