:^) #55

Merged
schrumpel merged 1 commits from dev into master 2022-10-27 15:32:55 +00:00
2 changed files with 35 additions and 1 deletions

View File

@ -2766,4 +2766,35 @@ ul.navbar-nav-guests li.nav-item {
.pagination { .pagination {
justify-content: center !important; justify-content: center !important;
} }
} }
/* mobile random button */
.random {
display: none;
}
@media (max-width: 768px) {
.metadata {
margin-bottom: 0;
}
.random {
width: 100%;
height: 100%;
transition: .5s ease-out;
display: block;
}
.random a {
width: 100%;
height: 100%;
}
.random a::after {
content: "";
}
.random:active {
background: #00000036;
}
}

View File

@ -97,6 +97,9 @@
@endif @endif
</span> </span>
</div> </div>
<div class="random">
<a href="/random"></a>
</div>
</div> </div>
@include(snippets/footer) @include(snippets/footer)
</div> </div>