From b5a5a9b9214720e9609bec72478a19dfe35fa82e Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Thu, 28 Jan 2021 16:42:54 +0100 Subject: [PATCH] Fix project entry width bug --- client/src/pages/project.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/src/pages/project.vue b/client/src/pages/project.vue index 36639b0a..968793ed 100644 --- a/client/src/pages/project.vue +++ b/client/src/pages/project.vue @@ -13,7 +13,8 @@
  • {{ objective }}
  • + v-for="(objective, index) in objectives">{{ objective }} +
    @@ -188,7 +189,7 @@ display: grid; width: auto; } - grid-template-columns: minmax(max-content, 840px); + grid-template-columns: minmax(min-content, 840px); grid-row-gap: 30px; justify-content: center; padding: $large-spacing $medium-spacing;