Skip to content

Commit

Permalink
🐛 Fix scroll to top link alignment
Browse files Browse the repository at this point in the history
Fixes #172
  • Loading branch information
jpanther committed Apr 11, 2022
1 parent ff5808b commit 9722330
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions assets/css/compiled/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1467,6 +1467,10 @@ body a, body button {
top: 110vh;
}

.bottom-\[-8\.25rem\] {
bottom: -8.25rem;
}

.bottom-\[-5\.5rem\] {
bottom: -5.5rem;
}
Expand Down Expand Up @@ -2608,6 +2612,10 @@ body a, body button {
}

@media (min-width: 640px) {
.sm\:bottom-\[-8rem\] {
bottom: -8rem;
}

.sm\:mb-0 {
margin-bottom: 0px;
}
Expand Down
6 changes: 5 additions & 1 deletion layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9722330

Please sign in to comment.