Commit ·
80f9eef
1
Parent(s): 0c832c0
28. Sept. 2024, 18:38
Browse files- _res/_custom.css +3 -1
- app.py +1 -1
_res/_custom.css
CHANGED
|
@@ -25,9 +25,11 @@ div.tabs>div.tab-nav>button {
|
|
| 25 |
}
|
| 26 |
|
| 27 |
div.tabs div.tabitem {
|
| 28 |
-
background-color: var(--neutral-
|
|
|
|
| 29 |
border-top: 8px solid var(--primary-600) !important;
|
| 30 |
border-radius: var(--container-radius) !important;
|
|
|
|
| 31 |
}
|
| 32 |
|
| 33 |
.top-description h1 {
|
|
|
|
| 25 |
}
|
| 26 |
|
| 27 |
div.tabs div.tabitem {
|
| 28 |
+
background-color: var(--neutral-800) !important;
|
| 29 |
+
border-color: var(--neutral-800) !important;
|
| 30 |
border-top: 8px solid var(--primary-600) !important;
|
| 31 |
border-radius: var(--container-radius) !important;
|
| 32 |
+
padding: 0 !important;
|
| 33 |
}
|
| 34 |
|
| 35 |
.top-description h1 {
|
app.py
CHANGED
|
@@ -311,7 +311,7 @@ with gr.Blocks(theme=theme, css=custom_css, js=custom_js, head=custom_head, titl
|
|
| 311 |
with gr.Tab("Preprocessors"):
|
| 312 |
with gr.Row(elem_classes="row-main"):
|
| 313 |
with gr.Column(scale=1, elem_id="input_column", elem_classes="input-column"):
|
| 314 |
-
input_image = gr.Image(label="
|
| 315 |
|
| 316 |
## TAB LINEART
|
| 317 |
with gr.Tab("Lineart") as tab_lineart:
|
|
|
|
| 311 |
with gr.Tab("Preprocessors"):
|
| 312 |
with gr.Row(elem_classes="row-main"):
|
| 313 |
with gr.Column(scale=1, elem_id="input_column", elem_classes="input-column"):
|
| 314 |
+
input_image = gr.Image(label="Dein Bild", type="numpy", height=512)
|
| 315 |
|
| 316 |
## TAB LINEART
|
| 317 |
with gr.Tab("Lineart") as tab_lineart:
|