CSS: Fix Large list titles and fix hover on audio gif thumbnails

This commit is contained in:
saltrafael 2021-08-17 08:49:04 -03:00 committed by zeppi
parent 4ff12294a7
commit 7d4cc58def
2 changed files with 10 additions and 1 deletions

View file

@ -7,7 +7,7 @@ $transition-duration: 300ms;
// Classnames must line up with classes in classes.js
.ff-container {
display: inline-block;
position: relative;
position: absolute;
.ff-image {
z-index: $base-zindex;

View file

@ -136,9 +136,18 @@
.file-page__recommended-collection {
@extend .file-page__recommended;
flex-direction: column;
overflow-wrap: break-word;
.file-page__recommended-collection__row {
display: block;
@media (min-width: $breakpoint-medium) {
max-width: 15rem;
}
@media (max-width: $breakpoint-medium) {
max-width: 50rem;
}
}
}