seawolf2357 commited on
Commit
c6255a0
·
verified ·
1 Parent(s): 1862842

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +16 -10
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
- .ant-input-textarea .ant-input,
70
- .ant-input-textarea textarea,
71
- .ant-input-textarea-show-count {
72
- min-height: 200px !important;
73
- height: 200px !important;
 
74
  resize: vertical !important;
75
- font-size: 16px !important;
76
- line-height: 1.5 !important;
77
- padding: 12px !important;
 
 
 
 
 
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
  }