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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMark Otto <markd.otto@gmail.com>2021-01-27 22:27:02 +0300
committerGitHub <noreply@github.com>2021-01-27 22:27:02 +0300
commit0fa16a5d4538d59715cc7b453e336842014bedec (patch)
tree01cf4736d62080183045993ebeb74cbebc1b9914 /scss
parent5d7b51e1d0d50e999041149bd0b681fb5bf633b3 (diff)
Re-add flex-grow to .navbar-collapse (#32899)
Update .navbar-collapse to drop width 100 and use flex-grow, restoring it to v4's behavior Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Diffstat (limited to 'scss')
-rw-r--r--scss/_navbar.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_navbar.scss b/scss/_navbar.scss
index 1187d617bd..e3eda27aa9 100644
--- a/scss/_navbar.scss
+++ b/scss/_navbar.scss
@@ -109,10 +109,10 @@
// the default flexbox row orientation. Requires the use of `flex-wrap: wrap`
// on the `.navbar` parent.
.navbar-collapse {
+ flex-grow: 1;
// For always expanded or extra full navbars, ensure content aligns itself
// properly vertically. Can be easily overridden with flex utilities.
align-items: center;
- width: 100%;
}
// Button for toggling the navbar when in its collapsed state