We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 418885f commit 91d1f96Copy full SHA for 91d1f96
2 files changed
src/components/Elements/SearchBarWithLogo/SearchBarWithLogo.css
@@ -0,0 +1,18 @@
1
+.searchBarWithLogo {
2
+ display: flex;
3
+ flex-direction: column;
4
+ row-gap: 24px;
5
+ align-items: center;
6
+ align-content: center;
7
+}
8
+
9
+.searchBarWithLogo .searchEngineLogo {
10
+ width: 280px;
11
+ height: 120px;
12
+ text-align: center;
13
+ margin: 0 auto;
14
15
+.searchEngineLogo svg {
16
+ width: 100%;
17
+ height: 100%;
18
src/components/Elements/SearchBarWithLogo/SearchBarWithLogo.tsx
@@ -1,6 +1,7 @@
import { SUPPORTED_SEARCH_ENGINES } from 'src/config'
import { useUserPreferences } from 'src/stores/preferences'
import { SearchBar } from '../SearchBar/SearchBar'
+import './SearchBarWithLogo.css'
export const SearchBarWithLogo = () => {
const { searchEngine } = useUserPreferences()
0 commit comments