aboutsummaryrefslogtreecommitdiff
path: root/components/home/genres.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-09-13 00:45:53 +0700
committerGitHub <[email protected]>2023-09-13 00:45:53 +0700
commit7327a69b55a20b99b14ee0803d6cf5f8b88c45ef (patch)
treecbcca777593a8cc4b0282e7d85a6fc51ba517e25 /components/home/genres.js
parentUpdate issue templates (diff)
downloadmoopa-7327a69b55a20b99b14ee0803d6cf5f8b88c45ef.tar.xz
moopa-7327a69b55a20b99b14ee0803d6cf5f8b88c45ef.zip
Update v4 - Merge pre-push to main (#71)
* Create build-test.yml * initial v4 commit * update: github workflow * update: push on branch * Update .github/ISSUE_TEMPLATE/bug_report.md * configuring next.config.js file
Diffstat (limited to 'components/home/genres.js')
-rw-r--r--components/home/genres.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/home/genres.js b/components/home/genres.js
index 3eefecd..f054fc9 100644
--- a/components/home/genres.js
+++ b/components/home/genres.js
@@ -55,7 +55,7 @@ export default function Genres() {
<ChevronRightIcon className="w-5 h-5" />
</div>
<div className="flex xl:justify-center items-center relative">
- <div className="bg-gradient-to-r from-primary to-transparent z-40 absolute w-7 h-[200px] left-0" />
+ <div className="bg-gradient-to-r from-primary to-transparent z-40 absolute w-7 h-full left-0" />
<div className="flex lg:gap-8 gap-3 lg:p-10 py-8 px-5 z-30 overflow-y-hidden overflow-x-scroll snap-x snap-proximity scrollbar-none relative">
<div className="flex lg:gap-10 gap-4">
{g.map((a, index) => (
@@ -80,7 +80,7 @@ export default function Genres() {
))}
</div>
</div>
- <div className="bg-gradient-to-l from-primary to-transparent z-40 absolute w-7 h-[200px] lg:h-[300px] right-0" />
+ <div className="bg-gradient-to-l from-primary to-transparent z-40 absolute w-7 h-full right-0" />
</div>
</div>
);