🐛 Fix scroll to top link alignment

Fixes #172
pull/176/head
James Panther 2022-04-12 09:17:17 +10:00
parent ff5808b877
commit 972233063c
No known key found for this signature in database
GPG Key ID: D36F789E45745D17
3 changed files with 17 additions and 1 deletions

View File

@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Hungarian translation ([#170](https://github.com/jpanther/congo/pull/170))
### Fixed
- Scroll to top link overlaps footer menu on mobile devices ([#172](https://github.com/jpanther/congo/issues/172))
## [2.1.2] - 2022-04-08
### Added

View File

@ -1467,6 +1467,10 @@ body a, body button {
top: 110vh;
}
.bottom-\[-8\.25rem\] {
bottom: -8.25rem;
}
.bottom-\[-5\.5rem\] {
bottom: -5.5rem;
}
@ -2608,6 +2612,10 @@ body a, body button {
}
@media (min-width: 640px) {
.sm\:bottom-\[-8rem\] {
bottom: -8rem;
}
.sm\:mb-0 {
margin-bottom: 0px;
}

View File

@ -30,7 +30,11 @@
{{- block "main" . }}{{- end }}
{{ if and (.Site.Params.showScrollToTop | default true) (gt .WordCount 200) }}
<div
class="absolute top-[110vh] ltr:right-0 rtl:left-0 w-12 pointer-events-none bottom-[-5.5rem]"
class="absolute top-[110vh] ltr:right-0 rtl:left-0 w-12 pointer-events-none {{ if .Site.Menus.footer -}}
bottom-[-8.25rem] sm:bottom-[-8rem]
{{- else -}}
bottom-[-5.5rem]
{{- end }}"
>
<a
href="#the-top"