Spaces:
Runtime error
Runtime error
File size: 1,511 Bytes
3878434 a26a4c4 3878434 b2711e0 b98c9c4 74ca01d b98c9c4 74ca01d b98c9c4 74ca01d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
.left_header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.right_panel {
margin-top: 66px;
border: 1px solid #BFBFC4;
border-radius: 8px;
overflow: hidden;;
}
.render_header {
height: 30px;
width: 100%;
padding: 5px 16px;
background-color: #f5f5f5;
}
.header_btn {
display: inline-block;
height: 10px;
width: 10px;
border-radius: 50%;
margin-right: 4px;
}
.render_header > .header_btn:nth-child(1) {
background-color: #f5222d;
}
.render_header > .header_btn:nth-child(2) {
background-color: #faad14;
}
.render_header > .header_btn:nth-child(3) {
background-color: #52c41a;
}
.right_content {
height: 920px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.history_chatbot button {
background: none;
border: none;
}
.html_content {
width: 100%;
height: 920px;
}
/* Footer 숨기기 - 여러 선택자 사용 */
footer, .footer, div[class*="footer"], #footer {
display: none !important;
visibility: hidden !important;
height: 0 !important;
padding: 0 !important;
margin: 0 !important;
}
/* Textarea 크기 조절 - 더 구체적인 선택자 사용 */
.ant-input-textarea .ant-input,
.ant-input-textarea textarea,
.ant-input-textarea-show-count {
min-height: 200px !important;
height: 200px !important;
resize: vertical !important;
font-size: 16px !important;
line-height: 1.5 !important;
padding: 12px !important;
} |