Spaces:
Paused
Paused
Update app.css
Browse files
app.css
CHANGED
|
@@ -306,4 +306,30 @@ iframe {
|
|
| 306 |
|
| 307 |
footer, .footer, div[class*="footer"], #footer {
|
| 308 |
display: none !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 309 |
}
|
|
|
|
| 306 |
|
| 307 |
footer, .footer, div[class*="footer"], #footer {
|
| 308 |
display: none !important;
|
| 309 |
+
}
|
| 310 |
+
|
| 311 |
+
/* 우측 패널 스타일 */
|
| 312 |
+
.right_panel {
|
| 313 |
+
background: white;
|
| 314 |
+
border-radius: 15px;
|
| 315 |
+
padding: 20px;
|
| 316 |
+
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
|
| 317 |
+
height: calc(100vh - 100px);
|
| 318 |
+
min-height: 800px;
|
| 319 |
+
}
|
| 320 |
+
|
| 321 |
+
/* 반응형 높이 조정 */
|
| 322 |
+
@media screen and (max-height: 900px) {
|
| 323 |
+
.right_panel {
|
| 324 |
+
height: calc(100vh - 80px);
|
| 325 |
+
min-height: 600px;
|
| 326 |
+
}
|
| 327 |
+
.html_content {
|
| 328 |
+
height: calc(100vh - 160px);
|
| 329 |
+
min-height: 500px;
|
| 330 |
+
}
|
| 331 |
+
.ant-input-textarea-large textarea {
|
| 332 |
+
height: 300px !important;
|
| 333 |
+
min-height: 300px !important;
|
| 334 |
+
}
|
| 335 |
}
|