Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -365,10 +365,20 @@ markdown_css = """
|
|
365 |
"""
|
366 |
|
367 |
tab_css = """
|
368 |
-
/* Tabs ▸
|
369 |
-
.tab-
|
370 |
-
|
371 |
-
font-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
}
|
373 |
"""
|
374 |
|
|
|
365 |
"""
|
366 |
|
367 |
tab_css = """
|
368 |
+
/* Tabs ▸ target ALL tab buttons using the actual structure */
|
369 |
+
.tabs .tab-container > button {
|
370 |
+
/* Add your desired styles here */
|
371 |
+
font-size: 1.6rem !important; /* Example: Adjust size */
|
372 |
+
font-weight: 500; /* Example: Adjust weight */
|
373 |
+
font-style: normal; /* Example: Set style */
|
374 |
+
color: #333; /* Example: Set color */
|
375 |
+
/* Add any other font/format properties */
|
376 |
+
}
|
377 |
+
|
378 |
+
/* Optional: Style for the selected tab button if needed */
|
379 |
+
.tabs .tab-container > button.selected {
|
380 |
+
font-weight: 700; /* Example: Make selected tab bold */
|
381 |
+
color: #0056b3; /* Example: Different color for selected */
|
382 |
}
|
383 |
"""
|
384 |
|