From a8ff04d9b7a9f53ccc7544cfc7b18ec49e29d6c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 9 Nov 2021 12:26:13 +0100 Subject: [PATCH] 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. --- app/assets/stylesheets/participation.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/participation.scss b/app/assets/stylesheets/participation.scss index 1f6e47636..85f8683e0 100644 --- a/app/assets/stylesheets/participation.scss +++ b/app/assets/stylesheets/participation.scss @@ -514,10 +514,10 @@ @include breakpoint(medium) { min-height: $line-height * 15; - } - .with-image > .row { - display: flex; + .with-image > .row { + display: flex; + } } }