From daf0c438f1f982d3e7fc9302f337e8eb21e6bb3d Mon Sep 17 00:00:00 2001 From: Giovanni Mendoza Date: Sat, 15 Feb 2020 05:06:02 -0600 Subject: [PATCH] Added new variable for padding on dropdown header (#29946) Co-authored-by: XhmikosR Co-authored-by: Martijn Cuppens --- scss/_dropdown.scss | 2 +- scss/_variables.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss index 8a7572828d..00f0cba6e8 100644 --- a/scss/_dropdown.scss +++ b/scss/_dropdown.scss @@ -177,7 +177,7 @@ // Dropdown section headers .dropdown-header { display: block; - padding: $dropdown-padding-y $dropdown-item-padding-x; + padding: $dropdown-header-padding; margin-bottom: 0; // for use with heading elements @include font-size($font-size-sm); color: $dropdown-header-color; diff --git a/scss/_variables.scss b/scss/_variables.scss index 5c24269e2b..8c62328378 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -913,6 +913,7 @@ $dropdown-item-padding-y: .25rem !default; $dropdown-item-padding-x: 1.5rem !default; $dropdown-header-color: $gray-600 !default; +$dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default; // Pagination -- 2.47.2