Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -556,8 +556,7 @@ custom_theme = gr.themes.Base(
|
|
| 556 |
input_placeholder_color="*neutral_400",
|
| 557 |
input_placeholder_color_dark="*neutral_400",
|
| 558 |
shadow_spread="8px",
|
| 559 |
-
shadow_inset="0px 2px 4px 0px rgba(0,0,0,0.05)"
|
| 560 |
-
border_radius_large="12px",
|
| 561 |
)
|
| 562 |
|
| 563 |
css = '''
|
|
@@ -662,6 +661,16 @@ input, textarea {
|
|
| 662 |
input:focus, textarea:focus {
|
| 663 |
box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
|
| 664 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 665 |
#footer {visibility: hidden;}
|
| 666 |
'''
|
| 667 |
|
|
|
|
| 556 |
input_placeholder_color="*neutral_400",
|
| 557 |
input_placeholder_color_dark="*neutral_400",
|
| 558 |
shadow_spread="8px",
|
| 559 |
+
shadow_inset="0px 2px 4px 0px rgba(0,0,0,0.05)"
|
|
|
|
| 560 |
)
|
| 561 |
|
| 562 |
css = '''
|
|
|
|
| 661 |
input:focus, textarea:focus {
|
| 662 |
box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
|
| 663 |
}
|
| 664 |
+
|
| 665 |
+
/* 컴포넌트들의 border-radius 설정 */
|
| 666 |
+
.gradio-container .input,
|
| 667 |
+
.gradio-container .button,
|
| 668 |
+
.gradio-container .block,
|
| 669 |
+
.gallery-item,
|
| 670 |
+
#lora_gallery {
|
| 671 |
+
border-radius: 12px;
|
| 672 |
+
}
|
| 673 |
+
|
| 674 |
#footer {visibility: hidden;}
|
| 675 |
'''
|
| 676 |
|