imprv: show personal dropdown over search control
@@ -61,7 +61,7 @@ const SearchControl: FC <Props> = React.memo((props: Props) => {
}, [invokeSearch]);
return (
- <div className="position-sticky fixed-top shadow-sm">
+ <div className="position-sticky sticky-top shadow-sm">
<div className="grw-search-page-nav d-flex py-3 align-items-center">
<div className="flex-grow-1 mx-4">
<SearchForm
@@ -1,6 +1,7 @@
.grw-navbar {
top: -$grw-navbar-height !important;
+ z-index: $grw-navbar-z-index !important;
max-height: $grw-navbar-height + $grw-navbar-border-width;
border-top: 0;
border-right: 0;
@@ -15,6 +15,9 @@ $font-family-monospace-not-strictly: Monaco, Menlo, Consolas, 'Courier New', Mei
//== Layout
$grw-navbar-height: 52px;
$grw-navbar-border-width: 3.3333px;
+// slightly larger than $zindex-sticky
+// https://getbootstrap.jp/docs/4.5/layout/overview/#z-index
+$grw-navbar-z-index: 1025;
$grw-subnav-min-height: 95px;
$grw-subnav-min-height-md: 115px;