Fixed footer breaking out of container when titles are too long

This commit is contained in:
squidfunk 2021-12-12 18:26:45 +01:00
parent c96ff2278e
commit 5340f63f69
7 changed files with 5 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -34,7 +34,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.b9368f9d.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.cf6950a3.min.css' | url }}">
{% if config.theme.palette %}
{% set palette = config.theme.palette %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.e6a45f82.min.css' | url }}">

View File

@ -52,6 +52,7 @@
flex-grow: 0.01;
padding-top: px2rem(28px);
padding-bottom: px2rem(8px);
overflow: hidden;
outline-color: var(--md-accent-fg-color);
transition: opacity 250ms;

View File

@ -121,7 +121,7 @@
}
// Navigation link on focus/hover
&:where(:focus, :hover) {
&:is(:focus, :hover) {
color: var(--md-accent-fg-color);
}