Spaces:
Paused
Paused
Update app.css
Browse files
app.css
CHANGED
|
@@ -56,11 +56,23 @@
|
|
| 56 |
height: 920px;
|
| 57 |
}
|
| 58 |
|
| 59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
|
| 61 |
-
/*
|
| 62 |
-
.ant-input-textarea
|
|
|
|
|
|
|
| 63 |
min-height: 200px !important;
|
| 64 |
height: 200px !important;
|
| 65 |
resize: vertical !important;
|
|
|
|
|
|
|
|
|
|
| 66 |
}
|
|
|
|
| 56 |
height: 920px;
|
| 57 |
}
|
| 58 |
|
| 59 |
+
/* Footer 숨기기 - 여러 선택자 사용 */
|
| 60 |
+
footer, .footer, div[class*="footer"], #footer {
|
| 61 |
+
display: none !important;
|
| 62 |
+
visibility: hidden !important;
|
| 63 |
+
height: 0 !important;
|
| 64 |
+
padding: 0 !important;
|
| 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 |
}
|