Spaces:
Sleeping
Sleeping
File size: 311 Bytes
85dbd3c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/* Center the input box */
#username_input {
margin: auto;
display: block;
text-align: center;
width: 50%;
}
/* Center the submit button */
.gr-button {
margin: auto;
display: block;
}
/* Adjust output DataFrame styling */
.output-dataframe {
margin-top: 20px;
}
|