diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-11-03 23:14:24 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-11-03 23:14:24 -0800 |
| commit | a4289ad223fe2f06d3c8a2bcd49dd50ce90ecece (patch) | |
| tree | bdbeb499e16fe26d42539a426466d67200f4fbca /src/components/SubscriberTable | |
| parent | 221cb6fba838ac287860c660a4c3f94a7fe47e77 (diff) | |
fix: make sidebar scrollable if list grows too long
Diffstat (limited to 'src/components/SubscriberTable')
| -rw-r--r-- | src/components/SubscriberTable/SubscriberTable.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/SubscriberTable/SubscriberTable.tsx b/src/components/SubscriberTable/SubscriberTable.tsx index 766cd3d..6c19e44 100644 --- a/src/components/SubscriberTable/SubscriberTable.tsx +++ b/src/components/SubscriberTable/SubscriberTable.tsx @@ -26,7 +26,10 @@ const DataTable = ({ channel_data, timestamp }: SubscriberDataTableProp) => { return ( <> - <div className="text-center sm:mt-5"> + <div + className="text-center sm:mt-5" + style={{ fontFamily: "Quantico, sans-serif" }} + > <h1 className="text-2xl font-bold text-gray-800"> Subscriber Count </h1> |
