Increase the size of Tabs text in Attendance and Projects.

This commit is contained in:
Kartik sharma 2025-07-09 11:24:46 +05:30 committed by pramod mahajan
parent b9281a3955
commit a1f232d65b
2 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,7 @@ const ProjectNav = ({ onPillClick, activePill }) => {
e.preventDefault();
onPillClick("profile");
}}
style={{ fontSize: '1rem' }}
>
<i className="bx bx-user bx-sm me-1_5"></i> <span className="d-none d-md-inline">Profile</span>
</a>
@ -32,6 +33,7 @@ const ProjectNav = ({ onPillClick, activePill }) => {
e.preventDefault();
onPillClick("teams");
}}
style={{ fontSize: '1rem' }}
>
<i className="bx bx-group bx-sm me-1_5"></i><span className="d-none d-md-inline" > Teams</span>
</a>
@ -44,6 +46,7 @@ const ProjectNav = ({ onPillClick, activePill }) => {
e.preventDefault();
onPillClick("infra");
}}
style={{ fontSize: '1rem' }}
>
<i className="bx bx-grid-alt bx-sm me-1_5"></i> <span className="d-none d-md-inline">Infrastructure</span>
</a>
@ -59,6 +62,7 @@ const ProjectNav = ({ onPillClick, activePill }) => {
e.preventDefault(); // Prevent page reload
onPillClick("imagegallary");
}}
style={{ fontSize: '1rem' }}
>
<i className="bx bxs-file-image bx-sm me-1_5"></i> <span className="d-none d-md-inline">Image Gallary</span>
</a>
@ -72,6 +76,7 @@ const ProjectNav = ({ onPillClick, activePill }) => {
e.preventDefault(); // Prevent page reload
onPillClick("directory");
}}
style={{ fontSize: '1rem' }}
>
<i className='bx bxs-contact bx-sm me-1_5'></i> <span className="d-none d-md-inline">Directory</span>
</a>

View File

@ -237,6 +237,7 @@ const AttendancePage = () => {
onClick={() => setActiveTab("all")}
data-bs-toggle="tab"
data-bs-target="#navs-top-home"
style={{ fontSize: '1rem' }}
>
Today's
</button>
@ -248,6 +249,7 @@ const AttendancePage = () => {
onClick={() => setActiveTab("logs")}
data-bs-toggle="tab"
data-bs-target="#navs-top-profile"
style={{ fontSize: '1rem' }}
>
Logs
</button>
@ -261,6 +263,7 @@ const AttendancePage = () => {
onClick={() => setActiveTab("regularization")}
data-bs-toggle="tab"
data-bs-target="#navs-top-messages"
style={{ fontSize: '1rem' }}
>
Regularization
</button>