From 02e230c9a3d67e38d9af40bfed26c6a112a7ad04 Mon Sep 17 00:00:00 2001 From: Georgios Drivas <78447254+GeorgiosDrivas@users.noreply.github.com> Date: Sat, 13 Sep 2025 17:15:03 +0300 Subject: [PATCH] fix: make tab items scrollable on mobile to avoid overflow On tablet and smaller screen sizes, the tabs are going off the screen. Link: https://www.prisma.io/docs/orm/prisma-client/setup-and-configuration/no-rust-engine --- src/css/custom.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/css/custom.css b/src/css/custom.css index fa03f5730f..d019ac1adc 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -678,6 +678,9 @@ hr { .header-github-link { display: none; } + .tabs-container ul.tabs{ + overflow-x: scroll; + } } .navbar__items--right > :last-child {