Skip to content

Commit 54a8f35

Browse files
committed
fix: page scrolling problem in desktop responsive mode
1 parent 333610a commit 54a8f35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dashboard/src/pages/_dashboard.bulk.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const BulkPage = () => {
6868
<PageHeader {...getPageHeaderProps()} />
6969
</PageTransition>
7070
<div className="w-full">
71-
<div className="scrollbar-hide flex overflow-x-auto border-b px-4">
71+
<div className="scrollbar-hide flex lg:flex-wrap overflow-x-auto border-b px-4">
7272
{tabs.map(tab => (
7373
<button
7474
key={tab.id}

dashboard/src/pages/_dashboard.settings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export default function Settings() {
210210
<div className="relative w-full">
211211
<div className="flex border-b">
212212
<div className="w-full">
213-
<div className="scrollbar-hide flex overflow-x-auto border-b px-4">
213+
<div className="scrollbar-hide flex lg:flex-wrap overflow-x-auto border-b px-4">
214214
{tabs.map(tab => {
215215
const isActive = activeTab === tab.id
216216
return (

0 commit comments

Comments
 (0)