diff options
| author | Julien Déramond <[email protected]> | 2022-06-28 07:41:15 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-06-28 07:41:15 +0200 |
| commit | 828034f26f0f21c58a4a27fe7332eaa979482185 (patch) | |
| tree | b5df3b44b954d5fd93cadd84c37a8f5c72034b17 | |
| parent | 9cf0e9b7355e337f76fccf9eafc2f3232f09f357 (diff) | |
| download | bootstrap-828034f26f0f21c58a4a27fe7332eaa979482185.tar.xz bootstrap-828034f26f0f21c58a4a27fe7332eaa979482185.zip | |
Fix search modal z-index to be on top of all docs showcased components (#36627)
| -rw-r--r-- | site/assets/scss/_search.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/assets/scss/_search.scss b/site/assets/scss/_search.scss index 49e34e8ee..24c0e2dc8 100644 --- a/site/assets/scss/_search.scss +++ b/site/assets/scss/_search.scss @@ -23,7 +23,7 @@ --docsearch-muted-color: #{$text-muted}; --docsearch-hit-shadow: none; - z-index: 1030; + z-index: 2000; // Make sure to be over all components showcased in the documentation @include media-breakpoint-up(lg) { padding-top: 4rem; |
