Spaces:
Running
Running
File size: 390 Bytes
f71c08d 0d73e2a 1277b3a |
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 |
/* style.css */
#center-column {
display: flex;
justify-content: center;
}
.gradio-row {
display: flex;
gap: 20px;
}
.gradio-column {
flex: 1;
}
.gradio-container {
display: flex;
flex-direction: column;
gap: 10px;
}
.gradio-button-row {
display: flex;
gap: 10px;
}
.gradio-textbox-row {
display: flex;
gap: 10px;
align-items: center;
}
|