diff options
| author | real-zephex <[email protected]> | 2024-05-08 10:13:36 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-08 10:13:36 +0530 |
| commit | 5dcca245b34037eb15505ffd1d1b23213bedad9c (patch) | |
| tree | feb9a8d943a7c91076d5ff691fba653dc5b4d36c /src/app/anime/search | |
| parent | Delete .github/workflows/eslint.yml (diff) | |
| parent | minor css fixes and added a new source for movies (diff) | |
| download | dramalama-5dcca245b34037eb15505ffd1d1b23213bedad9c.tar.xz dramalama-5dcca245b34037eb15505ffd1d1b23213bedad9c.zip | |
Merge pull request #22 from zephex-alt/master
New movie source - autoembed.cc
Diffstat (limited to 'src/app/anime/search')
| -rw-r--r-- | src/app/anime/search/page.jsx | 14 | ||||
| -rw-r--r-- | src/app/anime/search/search.module.css | 3 |
2 files changed, 10 insertions, 7 deletions
diff --git a/src/app/anime/search/page.jsx b/src/app/anime/search/page.jsx index bf399cf..f543fd8 100644 --- a/src/app/anime/search/page.jsx +++ b/src/app/anime/search/page.jsx @@ -33,7 +33,7 @@ export default function Input() { };
return (
- <div style={{marginBottom: -15}}>
+ <div style={{ marginBottom: -15 }}>
<div className={styles.inputContainer}>
<div className={styles.searchContainer}>
<FaSearch className={styles.searchIcon} />
@@ -48,11 +48,13 @@ export default function Input() { className={styles.SearchInput}
></input>
</div>
- <button>
- <Link href={"/anime/history/continueWatching"}>
- History
- </Link>
- </button>
+ <div>
+ <button>
+ <Link href={"/anime/history/continueWatching"}>
+ History
+ </Link>
+ </button>
+ </div>
</div>
{loading && (
diff --git a/src/app/anime/search/search.module.css b/src/app/anime/search/search.module.css index bbb2795..a185e36 100644 --- a/src/app/anime/search/search.module.css +++ b/src/app/anime/search/search.module.css @@ -40,7 +40,8 @@ .searchContainer {
display: flex;
align-items: center;
- margin: 20px 0px 10px 0px;
+ justify-content: center;
+ margin: 20px 0px 20px 0px;
background-color: #121212;
padding: 10px;
border-radius: 10px;
|