Spaces:
Running
Running
James McCool
commited on
Commit
·
6a2c013
1
Parent(s):
ef85b35
Refine tab styling border width for subtle visual enhancement
Browse filesAdjusted the selected tab border width from 5px to 3px, maintaining the golden color scheme while creating a more subtle and refined visual highlight.
app.py
CHANGED
@@ -48,7 +48,7 @@ st.markdown("""
|
|
48 |
|
49 |
.stTabs [aria-selected="true"] {
|
50 |
background-color: #DAA520;
|
51 |
-
border:
|
52 |
color: white;
|
53 |
}
|
54 |
|
|
|
48 |
|
49 |
.stTabs [aria-selected="true"] {
|
50 |
background-color: #DAA520;
|
51 |
+
border: 3px solid #FFD700;
|
52 |
color: white;
|
53 |
}
|
54 |
|