From 77a7ec787673c1df82207bab431bd20b4d4a291b Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Fri, 19 May 2023 13:46:24 +0000 Subject: [PATCH] Bug 27378: Fix heading structure of opac-patron-consent The current heading structure of opac-patron-consent.tt jumps straight from an h1 to an h5 for cookie consents. This has been changed to an h2 with scss updates to maintain formatting Signed-off-by: Sam Lau --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 3 ++- .../opac-tmpl/bootstrap/en/modules/opac-patron-consent.tt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index 8f8bb82540..94c72e494f 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -2928,8 +2928,9 @@ $star-selected: #EDB867; margin-top: 10px; } -#patronconsents h5 { +#patronconsents h2 { margin-top: 30px; + font-size: 1.1rem; } @import "responsive"; diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-patron-consent.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-patron-consent.tt index 896e9df4d2..94f4f2fb67 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-patron-consent.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-patron-consent.tt @@ -71,7 +71,7 @@ [% IF Koha.Preference('CookieConsent') %] -
Cookie consents
+

Cookie consents

[% END %] -- 2.30.2