openfree commited on
Commit
589f34b
·
verified ·
1 Parent(s): 0a13b34

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +59 -0
app.css CHANGED
@@ -730,3 +730,62 @@ footer, .footer, div[class*="footer"], #footer {
730
  .input-panel .ant-input-textarea-large {
731
  flex: 1;
732
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
730
  .input-panel .ant-input-textarea-large {
731
  flex: 1;
732
  }
733
+
734
+ /* 고정된 높이를 위한 클래스 */
735
+ .fixed-height {
736
+ height: 900px !important;
737
+ }
738
+
739
+ .fixed-content-height {
740
+ height: 870px !important; /* 헤더(30px)를 제외한 높이 */
741
+ }
742
+
743
+ .fixed-input-height {
744
+ height: 730px !important;
745
+ max-height: 730px !important;
746
+ }
747
+
748
+ /* 배포 결과 컴포넌트 스타일링 */
749
+ .deploy-result {
750
+ margin-top: 10px;
751
+ height: 90px;
752
+ max-height: 90px;
753
+ overflow-y: auto;
754
+ background-color: var(--neutral-100);
755
+ padding: 10px;
756
+ border-radius: var(--radius-md);
757
+ border-left: 3px solid var(--primary);
758
+ }
759
+
760
+ /* 입력 패널과 우측 패널의 높이 일치 */
761
+ .input-panel {
762
+ height: 870px !important;
763
+ max-height: 870px !important;
764
+ overflow: hidden;
765
+ display: flex;
766
+ flex-direction: column;
767
+ }
768
+
769
+ .input-panel textarea {
770
+ flex-grow: 1;
771
+ height: calc(100% - 120px) !important; /* 도움말 텍스트와 배포 결과 공간 확보 */
772
+ min-height: 300px !important;
773
+ }
774
+
775
+ /* 배포 결과 영역의 링크 색상 지정 */
776
+ #deploy-result a {
777
+ color: var(--primary);
778
+ font-weight: bold;
779
+ text-decoration: underline;
780
+ }
781
+
782
+ /* 텍스트 영역의 오버플로우 조정 */
783
+ .input-panel .ant-input-textarea {
784
+ flex: 1;
785
+ display: flex;
786
+ flex-direction: column;
787
+ }
788
+
789
+ .input-panel .ant-input-textarea-large {
790
+ flex: 1;
791
+ }