Skip to content

Commit c548ad0

Browse files
committed
more mobile support
1 parent f8dccef commit c548ad0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

frontend/src/components/activeBans.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const ActiveBans: React.FC = () => {
5858
}
5959

6060
return (
61-
<div className="flex flex-col gap-3">
61+
<div className="flex flex-col gap-3 min-w-0">
6262
<h1 className="text-2xl font-bold">View Active Bans</h1>
6363

6464
<div className="flex flex-row flex-wrap gap-3 items-center">

frontend/src/components/banHistory.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const BanHistory: React.FC = () => {
5555
}
5656

5757
return (
58-
<div className="flex flex-col gap-3">
58+
<div className="flex flex-col gap-3 min-w-0">
5959
<h1 className="text-2xl font-bold">Ban History</h1>
6060

6161
<div className="text-gray-400 text-sm">

frontend/src/components/stickybanModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const StickybanModal: React.FC<StickybanModalProps> = (
2020
const { stickybans } = props;
2121

2222
return (
23-
<div className="pt-10">
23+
<div>
2424
<div className="flex flex-row justify-center text-xl">Stickyban Menu</div>
2525
<div className="overflow-auto max-h-[800px] border-[#3f3f3f] border p-3">
2626
<table className="w-full">

0 commit comments

Comments
 (0)