mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 03:13:42 -05:00
GOV.UK Frontend gives `<main>` different padding on the top and bottom to us. This adds our spacing to `<main>` for pages without a side nav (except the product page which is special) and to the row containing the `<main>` and side nav sections on pages that have a side nav.
11 lines
317 B
HTML
11 lines
317 B
HTML
{% extends "admin_template.html" %}
|
|
|
|
{% set mainClasses = "govuk-!-padding-top-0 govuk-!-padding-bottom-0" %}
|
|
|
|
{% block main %}
|
|
{% block beforeContent %}{% endblock %}
|
|
<main class="govuk-main-wrapper {{ mainClasses }}" id="main-content" role="main">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
{% endblock %}
|