Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarah German <sgerman@gitlab.com>2024-01-22 23:02:00 +0300
committerSarah German <sgerman@gitlab.com>2024-01-22 23:02:00 +0300
commitd5237fb3b19a6bfbd37b8377b2d4d8a03a4f69f4 (patch)
treedb97a1f71fd7f25f840fcfbc38c9cf35587a4229
parent69513f68673ed4e26c8e3fab7c2432c1cbb8dc76 (diff)
Adjust bottom margin
-rw-r--r--content/frontend/default/feature_details.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/frontend/default/feature_details.js b/content/frontend/default/feature_details.js
index 17e15c2b..86a4b193 100644
--- a/content/frontend/default/feature_details.js
+++ b/content/frontend/default/feature_details.js
@@ -13,7 +13,7 @@ document.addEventListener('DOMContentLoaded', () => {
// Add a bottom margin if an accompanying "Version history" section is not present
if (!el.nextElementSibling.classList.contains('introduced-in')) {
- el.classList.add('gl-mb-3');
+ el.classList.add('gl-mb-5');
}
});