Spaces:
Running
Running
Commit
·
336ec69
1
Parent(s):
8b5f55f
Updating font size
Browse files
src/components/filters.py
CHANGED
@@ -46,8 +46,8 @@ def render_metric_selection():
|
|
46 |
<style>
|
47 |
/* Increase font size for metric checkboxes */
|
48 |
[data-testid="stCheckbox"] label p {
|
49 |
-
font-size:
|
50 |
-
font-weight:
|
51 |
}
|
52 |
</style>
|
53 |
""", unsafe_allow_html=True)
|
@@ -119,8 +119,8 @@ def render_task_selection(df):
|
|
119 |
|
120 |
/* Increase font size for task checkboxes */
|
121 |
[data-testid="stCheckbox"] label p {
|
122 |
-
font-size:
|
123 |
-
font-weight:
|
124 |
}
|
125 |
</style>
|
126 |
""", unsafe_allow_html=True)
|
|
|
46 |
<style>
|
47 |
/* Increase font size for metric checkboxes */
|
48 |
[data-testid="stCheckbox"] label p {
|
49 |
+
font-size: 20px !important;
|
50 |
+
font-weight: 700 !important;
|
51 |
}
|
52 |
</style>
|
53 |
""", unsafe_allow_html=True)
|
|
|
119 |
|
120 |
/* Increase font size for task checkboxes */
|
121 |
[data-testid="stCheckbox"] label p {
|
122 |
+
font-size: 20px !important;
|
123 |
+
font-weight: 700 !important;
|
124 |
}
|
125 |
</style>
|
126 |
""", unsafe_allow_html=True)
|