Update app.css
Browse files
app.css
CHANGED
@@ -56,7 +56,7 @@
|
|
56 |
height: 920px;
|
57 |
}
|
58 |
|
59 |
-
/* Footer 숨기기
|
60 |
footer, .footer, div[class*="footer"], #footer {
|
61 |
display: none !important;
|
62 |
visibility: hidden !important;
|
@@ -65,14 +65,20 @@ footer, .footer, div[class*="footer"], #footer {
|
|
65 |
margin: 0 !important;
|
66 |
}
|
67 |
|
68 |
-
/* Textarea
|
69 |
-
|
70 |
-
.
|
71 |
-
.ant-input-textarea-
|
72 |
-
|
73 |
-
height:
|
|
|
74 |
resize: vertical !important;
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
|
|
|
|
|
|
|
|
78 |
}
|
|
|
56 |
height: 920px;
|
57 |
}
|
58 |
|
59 |
+
/* Footer 숨기기 */
|
60 |
footer, .footer, div[class*="footer"], #footer {
|
61 |
display: none !important;
|
62 |
visibility: hidden !important;
|
|
|
65 |
margin: 0 !important;
|
66 |
}
|
67 |
|
68 |
+
/* 새로운 Textarea 선택자 */
|
69 |
+
#component-0 textarea,
|
70 |
+
.gradio-container textarea,
|
71 |
+
.ant-input-textarea-large textarea {
|
72 |
+
height: 300px !important;
|
73 |
+
min-height: 300px !important;
|
74 |
+
max-height: none !important;
|
75 |
resize: vertical !important;
|
76 |
+
}
|
77 |
+
|
78 |
+
/* textarea의 부모 컨테이너도 함께 조정 */
|
79 |
+
#component-0 .ant-input-textarea,
|
80 |
+
.gradio-container .ant-input-textarea,
|
81 |
+
.ant-input-textarea-large {
|
82 |
+
height: auto !important;
|
83 |
+
min-height: 300px !important;
|
84 |
}
|