Spaces:
Running
Running
James McCool
commited on
Commit
·
b49c87d
1
Parent(s):
00f90b0
Enhance tab styling with border and rounded corners
Browse filesImproved tab design by adding border radius and a subtle border to selected tabs, creating a more polished and visually appealing user interface.
app.py
CHANGED
@@ -48,6 +48,8 @@ st.markdown("""
|
|
48 |
|
49 |
.stTabs [aria-selected="true"] {
|
50 |
background-color: #DAA520;
|
|
|
|
|
51 |
color: white;
|
52 |
}
|
53 |
|
|
|
48 |
|
49 |
.stTabs [aria-selected="true"] {
|
50 |
background-color: #DAA520;
|
51 |
+
border-radius: 10px;
|
52 |
+
border: 1px solid #FFD700;
|
53 |
color: white;
|
54 |
}
|
55 |
|