Spaces:
Paused
Paused
Update app.css
Browse files
app.css
CHANGED
@@ -686,4 +686,47 @@ footer, .footer, div[class*="footer"], #footer {
|
|
686 |
padding: 10px;
|
687 |
background-color: rgba(255, 59, 48, 0.1);
|
688 |
border-radius: var(--radius-md);
|
689 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
686 |
padding: 10px;
|
687 |
background-color: rgba(255, 59, 48, 0.1);
|
688 |
border-radius: var(--radius-md);
|
689 |
+
|
690 |
+
/* 배포 결과 컴포넌트 스타일링 */
|
691 |
+
.deploy-result {
|
692 |
+
margin-top: 10px;
|
693 |
+
max-height: 90px;
|
694 |
+
overflow-y: auto;
|
695 |
+
background-color: var(--neutral-100);
|
696 |
+
padding: 10px;
|
697 |
+
border-radius: var(--radius-md);
|
698 |
+
border-left: 3px solid var(--primary);
|
699 |
+
}
|
700 |
+
|
701 |
+
/* 입력 패널과 우측 패널의 높이 일치 */
|
702 |
+
.input-panel {
|
703 |
+
height: 870px !important;
|
704 |
+
max-height: 870px !important;
|
705 |
+
overflow: hidden;
|
706 |
+
display: flex;
|
707 |
+
flex-direction: column;
|
708 |
+
}
|
709 |
+
|
710 |
+
.input-panel textarea {
|
711 |
+
flex-grow: 1;
|
712 |
+
height: calc(100% - 120px) !important; /* 도움말 텍스트와 배포 결과 공간 확보 */
|
713 |
+
min-height: 300px !important;
|
714 |
+
}
|
715 |
+
|
716 |
+
/* 배포 결과 영역의 링크 색상 지정 */
|
717 |
+
#deploy-result a {
|
718 |
+
color: var(--primary);
|
719 |
+
font-weight: bold;
|
720 |
+
text-decoration: underline;
|
721 |
+
}
|
722 |
+
|
723 |
+
/* 텍스트 영역의 오버플로우 조정 */
|
724 |
+
.input-panel .ant-input-textarea {
|
725 |
+
flex: 1;
|
726 |
+
display: flex;
|
727 |
+
flex-direction: column;
|
728 |
+
}
|
729 |
+
|
730 |
+
.input-panel .ant-input-textarea-large {
|
731 |
+
flex: 1;
|
732 |
+
}
|