We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d252e0b commit dabe8a2Copy full SHA for dabe8a2
apps/site/components/Containers/NavBar/index.module.css
@@ -12,6 +12,11 @@
12
dark:bg-neutral-950;
13
}
14
15
+.searchWrapper {
16
+ @apply flex
17
+ flex-grow;
18
+}
19
+
20
.nodeIconAndMobileItemsToggler {
21
@apply flex
22
h-16
apps/site/components/Containers/NavBar/index.tsx
@@ -71,7 +71,9 @@ const NavBar: FC<NavbarProps> = ({
71
</div>
72
73
<div className={style.actionsWrapper}>
74
- <SearchButton />
+ <div className={style.searchWrapper}>
75
+ <SearchButton />
76
+ </div>
77
78
<ThemeToggle onClick={onThemeTogglerClick} />
79
0 commit comments