1
0
mirror of https://github.com/typemill/typemill.git synced 2025-01-17 05:18:19 +01:00

Version 1.4.7: Optimize mobile logo and paging

This commit is contained in:
trendschau 2021-08-06 22:13:45 +02:00
parent bf54af5977
commit 0e7fd644a4
2 changed files with 10 additions and 3 deletions

View File

@ -487,6 +487,10 @@ button.play-video::after {
background: #333;
}
.logo-image{
max-width: 200px;
}
@media screen and (min-width:30em){
h1,h2,h3,h4,h5,h6{ hyphens: manual; }
}
@ -512,6 +516,9 @@ button.play-video::after {
grid-area: gridSidebar;
}
.logo-image{
max-width: 100%;
}
#burger:checked ~ .burgerbutton {
color: inherit;

View File

@ -96,12 +96,12 @@
{% if item.prevItem or item.nextItem %}
<div id="bottompager" class="f5 pv5 flex justify-between {{ settings.themes.cyanine.fontnavi|default('tm-sans-serif') }}">
<div id="bottompager" class="f5 pv5 flex-l flex-m justify-between {{ settings.themes.cyanine.fontnavi|default('tm-sans-serif') }}">
{% if item.prevItem %}
<a class="navigation link pv2 ph3 ba dim" href="{{ item.prevItem.urlRel }}">&lsaquo;&nbsp; {{ item.prevItem.name }}</a>
<a class="navigation link w-100 w-40-l w-40-m mv1 pv2 ph3 ba dim dib" href="{{ item.prevItem.urlRel }}">&lsaquo;&nbsp; {{ item.prevItem.name }}</a>
{% endif %}
{% if item.nextItem %}
<a class="navigation link pv2 ph3 ba dim" href="{{ item.nextItem.urlRel }}">{{ item.nextItem.name }} &nbsp;&rsaquo;</a>
<a class="navigation link w-100 w-40-l w-40-m mv1 pv2 ph3 dib ba dim tr" href="{{ item.nextItem.urlRel }}">{{ item.nextItem.name }} &nbsp;&rsaquo;</a>
{% endif %}
</div>