Spaces:
Running
Running
File size: 573 Bytes
c8763bd 5721994 6db5c25 c8763bd fe381c6 c8763bd fbc8c87 c8763bd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
custom_css = """
.descriptive-text {
font-size: 16px !important;
}
#citation-button span {
font-size: 16px !important;
}
#citation-button textarea {
font-size: 16px !important;
}
#citation-button > label > button {
margin: 6px;
transform: scale(1.3);
}
.hardware-tabs button {
font-size: 20px;
}
.A100-tabs button {
font-size: 20px;
}
"""
custom_js = """
function(url_params) {
const params = new URLSearchParams(window.location.search);
url_params = Object.fromEntries(params);
return url_params;
}
"""
|