fix(core): remove unnecessary role=contentinfo from page footer on login

`<footer>` has this role initially then it is a page footer, not inside `section`/`article`, and etc.

Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
This commit is contained in:
Grigorii K. Shartsev 2023-10-19 12:16:12 +02:00
parent 0e8abfd24c
commit befec8cb3c
2 changed files with 2 additions and 2 deletions

View file

@ -741,7 +741,7 @@ footer {
font-weight: bold;
}
&[role="contentinfo"] {
&.guest-box {
padding: 6px 24px;
margin-bottom: 1rem;

View file

@ -47,7 +47,7 @@ p($theme->getTitle());
</main>
</div>
</div>
<footer role="contentinfo" class="guest-box">
<footer class="guest-box">
<p class="info">
<?php print_unescaped($theme->getLongFooter()); ?>
</p>