Skip to content

Commit dd5d8db

Browse files
committed
fix search input colors
1 parent 55e20bb commit dd5d8db

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

src/components/Common/Search/Search.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ const Search: FC<{ onClose: () => void }> = ({ onClose }) => {
138138
/>
139139
<input
140140
// type="search"
141-
className="block border-none tw-lead-sm bg-transparent py-[22px] px-4 pl-14 w-full focus:outline-none"
141+
className="mainsearchinput block border-none tw-lead-sm bg-transparent py-[22px] px-4 pl-14 w-full focus:outline-none"
142142
placeholder="Search for anything"
143143
ref={inputRef}
144144
value={term}

src/css/custom.scss

+13-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ html[data-theme='dark']:root, /* we did this so the darkmode does not affect any
7676

7777
--ifm-menu-color: #fff;
7878

79-
--ic0-nav-border: 1px solid white;
79+
--ic0-nav-border: 1px solid #151515;
8080
--ic0-article-background: linear-gradient(180deg, #f5f5f5 0%, #f2eff6 100%);
8181
--ic0-docs-background: #151515;
8282

@@ -119,6 +119,18 @@ html[data-theme='dark']:root, /* we did this so the darkmode does not affect any
119119
.tabs-container {
120120
color: #000;
121121
}
122+
123+
.navbar__search-button {
124+
border-color: #fff;
125+
color: #fff;
126+
span {
127+
color: #fff;
128+
}
129+
}
130+
131+
.mainsearchinput {
132+
color: #000
133+
}
122134
}
123135

124136
.navbar {

src/theme/SearchBar/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ const Search = () => {
5151
<button
5252
className="
5353
navbar__search-button group
54-
border-none md:border-2 md:border-solid md:border-infinite/50 md:rounded-xl md:docs:border-black
54+
border-none md:border-2 md:border-solid md:border-infinite/50 md:rounded-xl
55+
md:docs:border-black
5556
bg-transparent px-2 md:px-5 py-1 md:py-2
5657
font-circular md:text-infinite md:docs:text-black
5758
flex gap-2 items-center

tailwind.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -317,4 +317,5 @@ module.exports = {
317317
}),
318318
],
319319
corePlugins: { preflight: false },
320+
darkMode: ["class", '[data-theme="dark"]'],
320321
};

0 commit comments

Comments
 (0)