openfree commited on
Commit
ff783a9
·
verified ·
1 Parent(s): 9c81a9e

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +20 -13
app.css CHANGED
@@ -61,10 +61,10 @@ body {
61
  color: var(--text-primary);
62
  }
63
 
64
- /* 패널 레이아웃 조정 */
65
  .equal-height-container {
66
  display: flex;
67
- min-height: 600px; /* 최소 높이 설정 */
68
  }
69
 
70
  .equal-height-col {
@@ -79,7 +79,7 @@ body {
79
  padding: 5px 16px;
80
  background-color: var(--neutral-100);
81
  border-radius: 8px 8px 0 0;
82
- margin-top: 0; /* 수정: 상단 여백 제거 */
83
  }
84
 
85
  .header_btn {
@@ -103,7 +103,7 @@ body {
103
  }
104
 
105
  .right_content {
106
- height: 600px; /* 수정: 높이 일관성 */
107
  display: flex;
108
  flex-direction: column;
109
  justify-content: center;
@@ -124,8 +124,8 @@ footer, .footer, div[class*="footer"], #footer {
124
  #component-0 textarea,
125
  .gradio-container textarea,
126
  .ant-input-textarea-large textarea {
127
- height: 300px !important;
128
- min-height: 300px !important;
129
  resize: vertical !important;
130
  border: 2px solid var(--neutral-200);
131
  border-radius: 12px;
@@ -133,7 +133,7 @@ footer, .footer, div[class*="footer"], #footer {
133
  background: var(--surface);
134
  color: var(--text-primary);
135
  padding: 1rem;
136
- flex-grow: 1; /* 추가: 공간을 채우도록 */
137
  }
138
 
139
  #component-0 textarea:focus,
@@ -160,16 +160,16 @@ footer, .footer, div[class*="footer"], #footer {
160
 
161
  .right_panel {
162
  position: relative;
163
- height: 600px; /* 명시적 높이 지정 */
164
  display: flex;
165
  flex-direction: column;
166
- padding-top: 0; /* 수정: 패딩 제거 */
167
  }
168
 
169
  .panel {
170
  display: flex;
171
  flex-direction: column;
172
- height: 600px; /* 명시적 높이 지정 */
173
  background: var(--surface);
174
  border-radius: 8px;
175
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
@@ -178,13 +178,13 @@ footer, .footer, div[class*="footer"], #footer {
178
  .input-panel {
179
  display: flex;
180
  flex-direction: column;
181
- height: 600px; /* 명시적 높이 지정 */
182
- flex: 1; /* 추가: flex 공간 채우기 */
183
  }
184
 
185
  .html_content {
186
  flex: 1;
187
- height: 570px; /* 수정: 헤더를 고려한 높이 */
188
  border-radius: 0 0 8px 8px;
189
  overflow: hidden;
190
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
@@ -197,6 +197,13 @@ footer, .footer, div[class*="footer"], #footer {
197
  flex: 1;
198
  }
199
 
 
 
 
 
 
 
 
200
  /* 탭 컨텐츠 높이 조정 */
201
  .ant-tabs-content {
202
  height: 100%;
 
61
  color: var(--text-primary);
62
  }
63
 
64
+ /* 패널 레이아웃 조정 - 높이 50% 증가 */
65
  .equal-height-container {
66
  display: flex;
67
+ min-height: 900px; /* 기존 600px에서 50% 증가 */
68
  }
69
 
70
  .equal-height-col {
 
79
  padding: 5px 16px;
80
  background-color: var(--neutral-100);
81
  border-radius: 8px 8px 0 0;
82
+ margin-top: 0;
83
  }
84
 
85
  .header_btn {
 
103
  }
104
 
105
  .right_content {
106
+ height: 900px; /* 기존 600px에서 50% 증가 */
107
  display: flex;
108
  flex-direction: column;
109
  justify-content: center;
 
124
  #component-0 textarea,
125
  .gradio-container textarea,
126
  .ant-input-textarea-large textarea {
127
+ height: 450px !important; /* 기존 300px에서 50% 증가 */
128
+ min-height: 450px !important; /* 기존 300px에서 50% 증가 */
129
  resize: vertical !important;
130
  border: 2px solid var(--neutral-200);
131
  border-radius: 12px;
 
133
  background: var(--surface);
134
  color: var(--text-primary);
135
  padding: 1rem;
136
+ flex-grow: 1;
137
  }
138
 
139
  #component-0 textarea:focus,
 
160
 
161
  .right_panel {
162
  position: relative;
163
+ height: 900px; /* 기존 600px에서 50% 증가 */
164
  display: flex;
165
  flex-direction: column;
166
+ padding-top: 0;
167
  }
168
 
169
  .panel {
170
  display: flex;
171
  flex-direction: column;
172
+ height: 900px; /* 기존 600px에서 50% 증가 */
173
  background: var(--surface);
174
  border-radius: 8px;
175
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 
178
  .input-panel {
179
  display: flex;
180
  flex-direction: column;
181
+ height: 900px; /* 기존 600px에서 50% 증가 */
182
+ flex: 1;
183
  }
184
 
185
  .html_content {
186
  flex: 1;
187
+ height: 870px; /* 기존 570px에서 50% 증가 (헤더 30px 고려) */
188
  border-radius: 0 0 8px 8px;
189
  overflow: hidden;
190
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 
197
  flex: 1;
198
  }
199
 
200
+ /* 우측 박스 텍스트 폰트 크기 20% 감소 */
201
+ .input-panel textarea,
202
+ .input-panel .ant-input-textarea-large textarea,
203
+ .input-panel .help-text {
204
+ font-size: 0.8em; /* 기본 폰트 크기에서 20% 감소 */
205
+ }
206
+
207
  /* 탭 컨텐츠 높이 조정 */
208
  .ant-tabs-content {
209
  height: 100%;