aboutsummaryrefslogtreecommitdiff
path: root/src/app/kdrama
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/kdrama')
-rw-r--r--src/app/kdrama/components/popular.jsx2
-rw-r--r--src/app/kdrama/components/recent.jsx2
-rw-r--r--src/app/kdrama/styles/search.module.css5
3 files changed, 5 insertions, 4 deletions
diff --git a/src/app/kdrama/components/popular.jsx b/src/app/kdrama/components/popular.jsx
index d09e0ff..8b88fd7 100644
--- a/src/app/kdrama/components/popular.jsx
+++ b/src/app/kdrama/components/popular.jsx
@@ -13,7 +13,7 @@ export default async function PopularDramas() {
<div className={styles.AnimeContainer}>
{popular &&
- popular.results.slice(0, 16).map((item, index) => (
+ popular.results.slice(0, 24).map((item, index) => (
<Link
href={`/kdrama/${encodeURIComponent(item.id)}`}
key={index}
diff --git a/src/app/kdrama/components/recent.jsx b/src/app/kdrama/components/recent.jsx
index fc142b1..d28f348 100644
--- a/src/app/kdrama/components/recent.jsx
+++ b/src/app/kdrama/components/recent.jsx
@@ -12,7 +12,7 @@ export default async function RecentDramas() {
<div className={styles.AnimeContainer}>
{popular &&
- popular.results.slice(0, 16).map((item, index) => (
+ popular.results.slice(0, 24).map((item, index) => (
<Link
href={`/kdrama/${encodeURIComponent(item.id)}`}
key={index}
diff --git a/src/app/kdrama/styles/search.module.css b/src/app/kdrama/styles/search.module.css
index 80f70b9..e8076f3 100644
--- a/src/app/kdrama/styles/search.module.css
+++ b/src/app/kdrama/styles/search.module.css
@@ -1,5 +1,5 @@
.SearchContainer {
- margin: 20px 0px -20px 0px;
+ margin: -1rem 0 -2rem 0;
}
.LoadingText {
@@ -14,7 +14,8 @@
display: flex;
align-items: center;
max-width: 30%;
- border-radius: 10px;
+ border-radius: 0.8rem;
+ margin: 0 0.2rem 0 0.2rem;
}
.SearchContainer input {