From 775ab9a8d17ad5a566cceeadd9269371cff8df01 Mon Sep 17 00:00:00 2001 From: Jessica Lawshe <5312836+lawshe@users.noreply.github.com> Date: Thu, 24 Oct 2024 09:26:59 -0500 Subject: [PATCH] Merge pull request #21352 from overleaf/as-gallery-tags-min-height Set a minimum height on expanded tags container GitOrigin-RevId: f8f537815a3b9b3e641b5e9d359964efa88f7808 --- .../frontend/stylesheets/bootstrap-5/pages/templates-v2.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/web/frontend/stylesheets/bootstrap-5/pages/templates-v2.scss b/services/web/frontend/stylesheets/bootstrap-5/pages/templates-v2.scss index 2f1a9de134..8980f71ed4 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/pages/templates-v2.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/pages/templates-v2.scss @@ -323,6 +323,10 @@ &.all-tags { max-height: none; + + // min-height prevents elements below the tags from moving upwards + // when Show More is clicked + min-height: 102px; } }