Jerrycool commited on
Commit
414bfe7
·
verified ·
1 Parent(s): ba0cd23

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -4
app.py CHANGED
@@ -365,10 +365,20 @@ markdown_css = """
365
  """
366
 
367
  tab_css = """
368
- /* Tabs ▸ change only the text on the tab buttons */
369
- .tab-buttons button {
370
- font-size: 1.6rem !important;
371
- font-weight: 500;
 
 
 
 
 
 
 
 
 
 
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