Skip to content

Commit c3e9e09

Browse files
Venkataramanan VenkateswaranVenkataramanan Venkateswaran
authored andcommitted
Change IssueDashboard css to have styles specific to Issues table
1 parent 7822cdc commit c3e9e09

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/components/BMDashboard/Issues/IssueDashboard.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.table th {
1+
.issues-table-responsive .text-end {
22
font-weight: 500;
33
color: #6c757d;
44
border-bottom-width: 1px;
@@ -49,7 +49,7 @@
4949
}
5050

5151
/* Fixed table responsiveness */
52-
.table-responsive {
52+
.issues-table-responsive {
5353
overflow-x: visible !important; /* Prevent horizontal scrollbar */
5454
overflow-y: visible !important; /* Ensure dropdowns aren't clipped */
5555
position: relative;
@@ -65,8 +65,8 @@ td.text-end {
6565
white-space: nowrap;
6666
width: 1%;
6767
}
68-
td,
69-
th {
68+
.issues-table-responsive td,
69+
.issues-table-responsive th {
7070
text-align: left !important;
7171
}
7272

@@ -76,7 +76,7 @@ th {
7676
}
7777

7878
/* Ensure table doesn't exceed container width */
79-
.table {
79+
.issues-table-responsive {
8080
width: 100%;
8181
table-layout: fixed;
8282
}

src/components/BMDashboard/Issues/IssueDashboard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export default function IssueDashboard() {
106106
</Col>
107107
</Row>
108108

109-
<div className="table-responsive">
109+
<div className="issues-table-responsive">
110110
<Table hover className={`mb-0 ${darkMode ? 'table-dark' : ''}`}>
111111
<thead className={darkMode ? 'table-dark' : 'table-light'}>
112112
<tr>

0 commit comments

Comments
 (0)