From cefd4e73191d979091cf65204a231c6a1204bfd9 Mon Sep 17 00:00:00 2001 From: Kartik sharma Date: Wed, 9 Jul 2025 11:24:46 +0530 Subject: [PATCH] Increase the size of Tabs text in Attendance and Projects. --- src/components/Project/ProjectNav.jsx | 5 +++++ src/pages/Activities/AttendancePage.jsx | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/components/Project/ProjectNav.jsx b/src/components/Project/ProjectNav.jsx index 444c6f03..f4125237 100644 --- a/src/components/Project/ProjectNav.jsx +++ b/src/components/Project/ProjectNav.jsx @@ -20,6 +20,7 @@ const ProjectNav = ({ onPillClick, activePill }) => { e.preventDefault(); // Prevent page reload onPillClick("profile"); }} + style={{ fontSize: '1rem' }} > Profile @@ -32,6 +33,7 @@ const ProjectNav = ({ onPillClick, activePill }) => { e.preventDefault(); // Prevent page reload onPillClick("teams"); }} + style={{ fontSize: '1rem' }} > Teams @@ -44,6 +46,7 @@ const ProjectNav = ({ onPillClick, activePill }) => { e.preventDefault(); // Prevent page reload onPillClick("infra"); }} + style={{ fontSize: '1rem' }} > Infrastructure @@ -72,6 +75,7 @@ const ProjectNav = ({ onPillClick, activePill }) => { e.preventDefault(); // Prevent page reload onPillClick("imagegallary"); }} + style={{ fontSize: '1rem' }} > Image Gallary @@ -85,6 +89,7 @@ const ProjectNav = ({ onPillClick, activePill }) => { e.preventDefault(); // Prevent page reload onPillClick("directory"); }} + style={{ fontSize: '1rem' }} > Directory diff --git a/src/pages/Activities/AttendancePage.jsx b/src/pages/Activities/AttendancePage.jsx index 4ffcebc1..8bb0b595 100644 --- a/src/pages/Activities/AttendancePage.jsx +++ b/src/pages/Activities/AttendancePage.jsx @@ -237,6 +237,7 @@ const AttendancePage = () => { onClick={() => setActiveTab("all")} data-bs-toggle="tab" data-bs-target="#navs-top-home" + style={{ fontSize: '1rem' }} > Today's @@ -248,6 +249,7 @@ const AttendancePage = () => { onClick={() => setActiveTab("logs")} data-bs-toggle="tab" data-bs-target="#navs-top-profile" + style={{ fontSize: '1rem' }} > Logs @@ -261,6 +263,7 @@ const AttendancePage = () => { onClick={() => setActiveTab("regularization")} data-bs-toggle="tab" data-bs-target="#navs-top-messages" + style={{ fontSize: '1rem' }} > Regularization -- 2.43.0