Spaces:
Sleeping
Sleeping
robertselvam
commited on
Commit
•
fb7f428
1
Parent(s):
cea1d7b
Update app.py
Browse files
app.py
CHANGED
@@ -196,9 +196,10 @@ class Resume_Overall:
|
|
196 |
def launch_gradio_interface(self, share: bool = True):
|
197 |
with gr.Blocks(css="style.css",theme='freddyaboulton/test-blue') as app:
|
198 |
with gr.Tab("Resume"):
|
199 |
-
with gr.Row():
|
200 |
-
with gr.Column(
|
201 |
file_output = gr.File(elem_classes="filenameshow")
|
|
|
202 |
upload_button = gr.UploadButton(
|
203 |
"Browse File",file_types=[".txt", ".pdf", ".doc", ".docx",".json",".csv"],
|
204 |
elem_classes="uploadbutton",scale=0.60)
|
|
|
196 |
def launch_gradio_interface(self, share: bool = True):
|
197 |
with gr.Blocks(css="style.css",theme='freddyaboulton/test-blue') as app:
|
198 |
with gr.Tab("Resume"):
|
199 |
+
with gr.Row(elem_id="col-container"):
|
200 |
+
with gr.Column(scale=0.60):
|
201 |
file_output = gr.File(elem_classes="filenameshow")
|
202 |
+
with gr.Column(scale=0.40):
|
203 |
upload_button = gr.UploadButton(
|
204 |
"Browse File",file_types=[".txt", ".pdf", ".doc", ".docx",".json",".csv"],
|
205 |
elem_classes="uploadbutton",scale=0.60)
|