We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9ac7da commit 34c41f3Copy full SHA for 34c41f3
1 file changed
src/components/UserProfile/AssignBadgePopup.jsx
@@ -100,7 +100,13 @@ function AssignBadgePopup(props) {
100
<div style={{ overflowY: 'scroll', height: '75vh' }}>
101
{!isLoadingBadge && (props.isTableOpen ?? filteredBadges.length > 0) ? (
102
<Table data-testid="test-badgeResults" className={darkMode ? 'text-light' : ''}>
103
- <thead>
+ <thead
104
+ style={
105
+ darkMode
106
+ ? { backgroundColor: '#1c2541', color: '#fff' }
107
+ : { backgroundColor: '#f0f8ff', color: 'black' }
108
+ }
109
+ >
110
<tr>
111
<th>Badge</th>
112
<th>Name</th>
@@ -139,7 +145,7 @@ function AssignBadgePopup(props) {
139
145
Loading Badges...
140
146
</h3>
141
147
142
- <Spinner color="primary"/>
148
+ <Spinner color="primary" />
143
149
</div>
144
150
) : (
151
!isLoadingBadge &&
0 commit comments