mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-19 14:09:20 -04:00
* We don't need the inset text to be inside `<div>` tags because the component adds its own * Replaced `bottom-gutter` with `govuk-!-margin-bottom-6` since this change will be needed across the app at some point.
11 lines
311 B
HTML
11 lines
311 B
HTML
{% from "components/inset-text/macro.njk" import govukInsetText %}
|
|
|
|
<h2 class="heading-medium">Links and URLs</h2>
|
|
<p class="bottom-gutter-1-3">
|
|
Always use full URLs, starting with https://
|
|
</p>
|
|
{{ govukInsetText({
|
|
"text": "Apply now at https://www.gov.uk/example",
|
|
"classes": "govuk-!-margin-top-0"})
|
|
}}
|