Update my_pages/home.py
Browse files- my_pages/home.py +3 -3
my_pages/home.py
CHANGED
|
@@ -16,11 +16,9 @@ def render():
|
|
| 16 |
cursor: pointer;
|
| 17 |
border: none !important;
|
| 18 |
display: inline!important;
|
| 19 |
-
font-weight:bold!important;
|
| 20 |
-
font-size:24px!important;
|
| 21 |
}
|
| 22 |
button[kind="primary"]:hover {
|
| 23 |
-
text-decoration:
|
| 24 |
color: #3366cc !important;
|
| 25 |
}
|
| 26 |
button[kind="primary"]:focus {
|
|
@@ -50,6 +48,8 @@ def render():
|
|
| 50 |
css_styles=f"""
|
| 51 |
button {{
|
| 52 |
color: {color_dict[page]};
|
|
|
|
|
|
|
| 53 |
}}""",
|
| 54 |
):
|
| 55 |
button_clicked_dict[page] = st.button(text, type="primary")
|
|
|
|
| 16 |
cursor: pointer;
|
| 17 |
border: none !important;
|
| 18 |
display: inline!important;
|
|
|
|
|
|
|
| 19 |
}
|
| 20 |
button[kind="primary"]:hover {
|
| 21 |
+
text-decoration: underline;
|
| 22 |
color: #3366cc !important;
|
| 23 |
}
|
| 24 |
button[kind="primary"]:focus {
|
|
|
|
| 48 |
css_styles=f"""
|
| 49 |
button {{
|
| 50 |
color: {color_dict[page]};
|
| 51 |
+
font-weight:bold!important;
|
| 52 |
+
font-size:24px!important;
|
| 53 |
}}""",
|
| 54 |
):
|
| 55 |
button_clicked_dict[page] = st.button(text, type="primary")
|