neerajkalyank commited on
Commit
93e4d31
·
verified ·
1 Parent(s): 116fbef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -159,7 +159,7 @@ body {
159
 
160
  /* Tab Styling with Rounded Rectangle */
161
  .gradio-container .gr-tab {
162
- color: #f0f0f0;
163
  padding: 10px 20px;
164
  font-weight: bold;
165
  cursor: pointer;
@@ -170,12 +170,12 @@ body {
170
 
171
  .gradio-container .gr-tab:hover {
172
  color: #ffffff;
173
- background-color: #ffcc00;
174
  }
175
 
176
  .gradio-container .gr-tab-active {
177
  color: #ffffff;
178
- background-color: #ffcc00;
179
  border-radius: 8px;
180
  }
181
 
 
159
 
160
  /* Tab Styling with Rounded Rectangle */
161
  .gradio-container .gr-tab {
162
+ color: #f0f0f0; /* Set default text color to white */
163
  padding: 10px 20px;
164
  font-weight: bold;
165
  cursor: pointer;
 
170
 
171
  .gradio-container .gr-tab:hover {
172
  color: #ffffff;
173
+ background-color: #ffcc00; /* Background color for hover effect */
174
  }
175
 
176
  .gradio-container .gr-tab-active {
177
  color: #ffffff;
178
+ background-color: #ffcc00; /* Background color for active tab */
179
  border-radius: 8px;
180
  }
181