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