Spaces:
Running
Running
James McCool
commited on
Commit
·
cfb1602
1
Parent(s):
8852749
Adjust CSS styling in app.py to set a specific height for text input fields within the Handbuilder tab, enhancing the visual consistency of the user interface.
Browse files
app.py
CHANGED
@@ -60,6 +60,10 @@ st.markdown("""
|
|
60 |
background-color: #DAA520;
|
61 |
color: white;
|
62 |
}
|
|
|
|
|
|
|
|
|
63 |
</style>""", unsafe_allow_html=True)
|
64 |
|
65 |
@st.cache_resource(ttl = 61)
|
|
|
60 |
background-color: #DAA520;
|
61 |
color: white;
|
62 |
}
|
63 |
+
|
64 |
+
div[data-testid="stBlock"] stTextInput > div[data-baseweb="input"] {
|
65 |
+
height: 5px;
|
66 |
+
}
|
67 |
</style>""", unsafe_allow_html=True)
|
68 |
|
69 |
@st.cache_resource(ttl = 61)
|