Slight adjustments for back-to-top button

This commit is contained in:
squidfunk
2021-07-03 15:14:34 +02:00
parent d355e98182
commit 2bcc7f3c9d
8 changed files with 11 additions and 11 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -39,7 +39,7 @@
{% endif %} {% endif %}
{% endblock %} {% endblock %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.48b295f8.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/main.1ff57afd.min.css' | url }}">
{% if config.theme.palette %} {% if config.theme.palette %}
{% set palette = config.theme.palette %} {% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.f1a3b89f.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/palette.f1a3b89f.min.css' | url }}">
@@ -223,7 +223,7 @@
</script> </script>
{% endblock %} {% endblock %}
{% block scripts %} {% block scripts %}
<script src="{{ 'assets/javascripts/bundle.70097392.min.js' | url }}"></script> <script src="{{ 'assets/javascripts/bundle.455f5155.min.js' | url }}"></script>
{% for path in config["extra_javascript"] %} {% for path in config["extra_javascript"] %}
<script src="{{ path | url }}"></script> <script src="{{ path | url }}"></script>
{% endfor %} {% endfor %}

View File

@@ -152,7 +152,7 @@ export function mountBackToTop(
/* Update state */ /* Update state */
next([{ hidden }, { height }]) { next([{ hidden }, { height }]) {
setBackToTopOffset(el, height + 16) setBackToTopOffset(el, height + 12)
if (hidden) if (hidden)
setBackToTopState(el, "hidden") setBackToTopState(el, "hidden")
else else

View File

@@ -27,8 +27,8 @@
// Back-to-top button // Back-to-top button
.md-top { .md-top {
position: fixed; position: fixed;
top: px2rem(48px + 16px); top: px2rem(48px + 12px);
z-index: 1; z-index: 3;
margin-left: 50%; margin-left: 50%;
padding: px2rem(8px) px2rem(16px); padding: px2rem(8px) px2rem(16px);
color: var(--md-default-fg-color--light); color: var(--md-default-fg-color--light);