Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .streamlit/secrets.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
GEMINI_API_KEY = "AIzaSyDsLJgA58LvgFtnUdVBLFb08GZQV0wXYjQ"
GEMINI_API_KEY = "AIzaSyDsLJgA58LvgFtnUdVBLFb08GZQV0wXYjQ"
2 changes: 1 addition & 1 deletion TalkHeal.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,4 +243,4 @@ def mood_slider():
}
setTimeout(scrollToBottom, 100);
</script>
""", unsafe_allow_html=True)
""", unsafe_allow_html=True)
11 changes: 7 additions & 4 deletions components/login_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ def show_login_page():
width: 100%;
}

.auth-button button {
/* Normal state */
.stButton > button {
width: 100%;
padding: 0.85rem;
border-radius: 8px;
Expand All @@ -98,12 +99,13 @@ def show_login_page():
color: #121212;
margin-top: 0.5rem;
cursor: pointer;
background-color: #10B981;
background-color: #10B981 !important;
transition: background-color 0.2s ease;
}

.auth-button button:hover {
background-color: #14D396;
/* Hover state */
.stButton > button:hover {
background-color: #14D396 !important;
}

.switch-link {
Expand Down Expand Up @@ -210,3 +212,4 @@ def show_login_page():
st.session_state.authenticated = False
st.session_state.user_name = ""
st.rerun()

Loading