diff options
| author | real-zephex <[email protected]> | 2024-04-26 10:37:49 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-26 10:37:49 +0530 |
| commit | 7943337a679ba86393a8aea56dca2b85d70852b7 (patch) | |
| tree | dd64e6783c3de1f00cd0eccb83710034e3e84973 /src/app/manga/searchBar.jsx | |
| parent | fixes: fixed the image proxy (diff) | |
| download | dramalama-7943337a679ba86393a8aea56dca2b85d70852b7.tar.xz dramalama-7943337a679ba86393a8aea56dca2b85d70852b7.zip | |
fixes: changed the manga.svg to manga.png
Diffstat (limited to 'src/app/manga/searchBar.jsx')
| -rw-r--r-- | src/app/manga/searchBar.jsx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/app/manga/searchBar.jsx b/src/app/manga/searchBar.jsx index 763f383..76928c3 100644 --- a/src/app/manga/searchBar.jsx +++ b/src/app/manga/searchBar.jsx @@ -6,8 +6,6 @@ import { useState } from "react"; import { useRouter } from "next/navigation";
import Link from "next/link";
-// This is the search bar for the mangapage. Nothing extraordinary but just an input box and a search icon. Gets the work done.
-
export default function SearchBar() {
const router = useRouter();
@@ -16,11 +14,11 @@ export default function SearchBar() { return (
<main className={styles.searchMain}>
<div className={styles.SearchBar}>
- <FaSearch color="white" style={{ marginLeft: 5 }} />
+ <FaSearch color="white" style={{ marginLeft: 5 }} size={18} />
<input
type="text"
name="manga"
- placeholder="Enter manga title"
+ placeholder="Enter manga title and press enter"
autoComplete="off"
onChange={(e) => setMangaTitle(e.target.value)}
onKeyDown={(event) => {
@@ -35,7 +33,7 @@ export default function SearchBar() { }}
></input>
</div>
- <div>
+ <div className={styles.histButton}>
<Link href={"/manga/history/continueWatching/"}>
<button>History</button>
</Link>
|