Spaces:
Running
Running
James McCool
commited on
Commit
·
06cad0a
1
Parent(s):
57553f6
Update tab styling colors in app.py for improved visual consistency
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ st.markdown("""
|
|
44 |
.stTabs [data-baseweb="tab"] {
|
45 |
height: 50px;
|
46 |
white-space: pre-wrap;
|
47 |
-
background-color: #
|
48 |
color: white;
|
49 |
border-radius: 10px;
|
50 |
gap: 1px;
|
@@ -55,11 +55,12 @@ st.markdown("""
|
|
55 |
|
56 |
.stTabs [aria-selected="true"] {
|
57 |
background-color: #DAA520;
|
|
|
58 |
color: white;
|
59 |
}
|
60 |
|
61 |
.stTabs [data-baseweb="tab"]:hover {
|
62 |
-
background-color: #
|
63 |
cursor: pointer;
|
64 |
}
|
65 |
</style>""", unsafe_allow_html=True)
|
|
|
44 |
.stTabs [data-baseweb="tab"] {
|
45 |
height: 50px;
|
46 |
white-space: pre-wrap;
|
47 |
+
background-color: #DAA520;
|
48 |
color: white;
|
49 |
border-radius: 10px;
|
50 |
gap: 1px;
|
|
|
55 |
|
56 |
.stTabs [aria-selected="true"] {
|
57 |
background-color: #DAA520;
|
58 |
+
border: 3px solid #FFD700;
|
59 |
color: white;
|
60 |
}
|
61 |
|
62 |
.stTabs [data-baseweb="tab"]:hover {
|
63 |
+
background-color: #FFD700;
|
64 |
cursor: pointer;
|
65 |
}
|
66 |
</style>""", unsafe_allow_html=True)
|