diff options
| author | zephex-alt <[email protected]> | 2024-04-29 19:02:30 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-29 19:02:30 +0000 |
| commit | 75554bf84c7520c0bff2d4e7f14141577319dbda (patch) | |
| tree | 9ef4a5ab980c60d28a323d47905615423782e08f /src | |
| parent | adjusted the images' width and height (diff) | |
| download | dramalama-75554bf84c7520c0bff2d4e7f14141577319dbda.tar.xz dramalama-75554bf84c7520c0bff2d4e7f14141577319dbda.zip | |
late night fuckery
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/anime/recent/page.jsx | 5 | ||||
| -rw-r--r-- | src/app/anime/recent/recent.module.css | 5 | ||||
| -rw-r--r-- | src/app/anime/search/search.module.css | 3 | ||||
| -rw-r--r-- | src/app/anime/top-airing/page.jsx | 2 | ||||
| -rw-r--r-- | src/app/anime/top-airing/trending.module.css | 5 | ||||
| -rw-r--r-- | src/app/kdrama/components/search.jsx | 4 | ||||
| -rw-r--r-- | src/app/kdrama/styles/search.module.css | 2 |
7 files changed, 13 insertions, 13 deletions
diff --git a/src/app/anime/recent/page.jsx b/src/app/anime/recent/page.jsx index 64cb775..55a038f 100644 --- a/src/app/anime/recent/page.jsx +++ b/src/app/anime/recent/page.jsx @@ -21,7 +21,10 @@ export default async function Releases() { href={`/anime/${item.id}`}
style={{ textDecoration: "none", color: "white" }}
>
- <div className={styles.RecentEntries}>
+ <div
+ className={styles.RecentEntries}
+ title={item.title}
+ >
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
className={styles.RecentImage}
diff --git a/src/app/anime/recent/recent.module.css b/src/app/anime/recent/recent.module.css index d16c23f..a641fb5 100644 --- a/src/app/anime/recent/recent.module.css +++ b/src/app/anime/recent/recent.module.css @@ -5,10 +5,9 @@ .RecentText p {
font-size: 28px;
- margin: 5px;
+ margin: 0;
color: var(--soft-purple);
- font-family: "Poppins";
- font-weight: 500;
+ font-family: "Lexend Deca", serif;
}
.RecentText span {
diff --git a/src/app/anime/search/search.module.css b/src/app/anime/search/search.module.css index 6799bac..a1acc27 100644 --- a/src/app/anime/search/search.module.css +++ b/src/app/anime/search/search.module.css @@ -55,6 +55,7 @@ .animeEntry {
display: flex;
overflow-x: auto;
+ margin-bottom: 1rem;
}
.animeEntry .anime {
@@ -86,7 +87,7 @@ justify-content: space-between;
align-items: center;
padding: 5px;
- margin: 0px 10px 1rem 0px;
+ margin: 0 10px 0 0;
border-radius: 0.5rem;
transition: opacity 200ms ease-in, background-color 200ms linear;
background-color: #242424d0;
diff --git a/src/app/anime/top-airing/page.jsx b/src/app/anime/top-airing/page.jsx index 4992b30..ab5d3af 100644 --- a/src/app/anime/top-airing/page.jsx +++ b/src/app/anime/top-airing/page.jsx @@ -20,7 +20,7 @@ export default async function Trending() { href={`/anime/${item.id}`}
style={{ textDecoration: "none", color: "white" }}
>
- <div className={styles.trendingEntries}>
+ <div className={styles.trendingEntries} title={item.title}>
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
className={styles.trendingImage}
diff --git a/src/app/anime/top-airing/trending.module.css b/src/app/anime/top-airing/trending.module.css index dc9a29a..0acc3e1 100644 --- a/src/app/anime/top-airing/trending.module.css +++ b/src/app/anime/top-airing/trending.module.css @@ -5,10 +5,9 @@ .TrendingText p {
font-size: 28px;
- margin: 5px;
+ margin: 0px;
color: var(--soft-purple);
- font-family: "Poppins";
- font-weight: 500;
+ font-family: "Lexend Deca", serif;
}
.TrendingText span {
diff --git a/src/app/kdrama/components/search.jsx b/src/app/kdrama/components/search.jsx index dc641e1..f44e4bb 100644 --- a/src/app/kdrama/components/search.jsx +++ b/src/app/kdrama/components/search.jsx @@ -52,8 +52,8 @@ export default function DramaSearch() { <p>{item.title}</p>
<Image
src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item.image}`}
- width={120}
- height={190}
+ width={140}
+ height={210}
alt="Drama Poster"
/>
</div>
diff --git a/src/app/kdrama/styles/search.module.css b/src/app/kdrama/styles/search.module.css index de17169..c1e9591 100644 --- a/src/app/kdrama/styles/search.module.css +++ b/src/app/kdrama/styles/search.module.css @@ -79,8 +79,6 @@ }
.SearchEntry img {
- width: auto;
- height: auto;
border-radius: 0.5rem;
}
|