From 57db25aa94d1804b0492be193a0bf0fd3fbfe331 Mon Sep 17 00:00:00 2001 From: Dorian Date: Thu, 12 Feb 2026 13:12:22 +0000 Subject: [PATCH] Match My List layout to Films tab (horizontal slider, card sizing) Replaced grid layout in My List sections with the same horizontal scroll slider used by ContentRow: flex gap-8, fixed card widths (200px/280px), matching padding and overflow behavior. Cards, spacing, and scrolling now look identical across Films and My List. Co-authored-by: Cursor --- src/views/Browse.vue | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/views/Browse.vue b/src/views/Browse.vue index 2a929d9..ce37d54 100644 --- a/src/views/Browse.vue +++ b/src/views/Browse.vue @@ -83,11 +83,11 @@

Continue Watching

-
+
@@ -112,11 +112,11 @@

Saved Films

-
+
@@ -138,11 +138,11 @@

My Rentals

-
+
@@ -423,6 +423,15 @@ onMounted(() => { overflow-x: hidden; } +.scrollbar-hide { + -ms-overflow-style: none; + scrollbar-width: none; +} + +.scrollbar-hide::-webkit-scrollbar { + display: none; +} + /* Hero Title Styles */ .hero-title { background: linear-gradient(to right, #fafafa, #9ca3af);