Fix investments list layout on small screens

The flex layout didn't work well on small screens, since there was
barely any space for the elements.
This commit is contained in:
Javi Martín
2021-11-09 12:26:13 +01:00
parent e54b6b3d97
commit a8ff04d9b7

View File

@@ -514,10 +514,10 @@
@include breakpoint(medium) { @include breakpoint(medium) {
min-height: $line-height * 15; min-height: $line-height * 15;
}
.with-image > .row { .with-image > .row {
display: flex; display: flex;
}
} }
} }