Spaces:
Paused
Paused
Update app.css
Browse files
app.css
CHANGED
@@ -121,11 +121,23 @@ footer, .footer, div[class*="footer"], #footer {
|
|
121 |
display: none !important;
|
122 |
}
|
123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
#component-0 textarea,
|
125 |
.gradio-container textarea,
|
126 |
.ant-input-textarea-large textarea {
|
127 |
-
/*
|
128 |
-
height:
|
129 |
min-height: 300px !important;
|
130 |
resize: vertical !important;
|
131 |
border: 2px solid var(--neutral-200);
|
@@ -145,18 +157,10 @@ footer, .footer, div[class*="footer"], #footer {
|
|
145 |
}
|
146 |
|
147 |
.setting-buttons {
|
148 |
-
position: sticky;
|
149 |
-
top: 1rem;
|
150 |
-
right: 0;
|
151 |
-
z-index: 1000;
|
152 |
display: flex;
|
153 |
gap: 8px;
|
154 |
-
padding:
|
155 |
-
|
156 |
-
backdrop-filter: blur(8px);
|
157 |
-
border-radius: 12px;
|
158 |
-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
159 |
-
border: 1px solid var(--neutral-200);
|
160 |
}
|
161 |
|
162 |
.right_panel {
|
@@ -181,6 +185,9 @@ footer, .footer, div[class*="footer"], #footer {
|
|
181 |
flex-direction: column;
|
182 |
height: 900px; /* 좌측 패널과 동일하게 900px */
|
183 |
flex: 1;
|
|
|
|
|
|
|
184 |
}
|
185 |
|
186 |
.html_content {
|
@@ -427,6 +434,10 @@ footer, .footer, div[class*="footer"], #footer {
|
|
427 |
min-width: 54px; /* 기존 60px에서 10% 감소 */
|
428 |
font-size: 0.81rem; /* 0.9rem에서 10% 감소 */
|
429 |
}
|
|
|
|
|
|
|
|
|
430 |
}
|
431 |
|
432 |
/* Animations */
|
|
|
121 |
display: none !important;
|
122 |
}
|
123 |
|
124 |
+
/* 우측 상단 버튼 영역 */
|
125 |
+
.right-top-buttons {
|
126 |
+
margin-bottom: 10px;
|
127 |
+
}
|
128 |
+
|
129 |
+
.action-buttons {
|
130 |
+
margin-top: 5px;
|
131 |
+
margin-bottom: 8px;
|
132 |
+
display: flex;
|
133 |
+
flex-wrap: wrap;
|
134 |
+
}
|
135 |
+
|
136 |
#component-0 textarea,
|
137 |
.gradio-container textarea,
|
138 |
.ant-input-textarea-large textarea {
|
139 |
+
/* 텍스트 영역 높이 조정 */
|
140 |
+
height: 790px !important; /* 버튼들이 상단으로 이동하여 높이 조정 */
|
141 |
min-height: 300px !important;
|
142 |
resize: vertical !important;
|
143 |
border: 2px solid var(--neutral-200);
|
|
|
157 |
}
|
158 |
|
159 |
.setting-buttons {
|
|
|
|
|
|
|
|
|
160 |
display: flex;
|
161 |
gap: 8px;
|
162 |
+
padding: 8px 0;
|
163 |
+
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
164 |
}
|
165 |
|
166 |
.right_panel {
|
|
|
185 |
flex-direction: column;
|
186 |
height: 900px; /* 좌측 패널과 동일하게 900px */
|
187 |
flex: 1;
|
188 |
+
border-radius: 8px;
|
189 |
+
margin-top: 0; /* 상단 여백 제거 */
|
190 |
+
overflow: hidden;
|
191 |
}
|
192 |
|
193 |
.html_content {
|
|
|
434 |
min-width: 54px; /* 기존 60px에서 10% 감소 */
|
435 |
font-size: 0.81rem; /* 0.9rem에서 10% 감소 */
|
436 |
}
|
437 |
+
|
438 |
+
.action-buttons {
|
439 |
+
flex-wrap: wrap;
|
440 |
+
}
|
441 |
}
|
442 |
|
443 |
/* Animations */
|