ssboost commited on
Commit
172b3ae
·
verified ·
1 Parent(s): 330175a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +29 -0
app.py CHANGED
@@ -161,12 +161,41 @@ try:
161
  .chatbot {
162
  border-radius: 15px;
163
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 
164
  }
165
 
166
  button {
167
  border-radius: 8px;
168
  font-weight: 500;
169
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  """
171
  )
172
 
 
161
  .chatbot {
162
  border-radius: 15px;
163
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
164
+ border: none !important;
165
  }
166
 
167
  button {
168
  border-radius: 8px;
169
  font-weight: 500;
170
  }
171
+
172
+ /* Chatbot 탭 숨기기 */
173
+ .tab-nav {
174
+ display: none !important;
175
+ }
176
+
177
+ div[role="tablist"] {
178
+ display: none !important;
179
+ }
180
+
181
+ .tabs > div:first-child {
182
+ display: none !important;
183
+ }
184
+
185
+ /* 모든 테두리 제거 */
186
+ .chatbot, .chatbot > div {
187
+ border: none !important;
188
+ }
189
+
190
+ /* 전체 컨테이너 테두리도 제거 */
191
+ .contain {
192
+ border: none !important;
193
+ }
194
+
195
+ /* 입력창 테두리도 제거하려면 */
196
+ textarea, input {
197
+ border: 1px solid #e0e0e0 !important;
198
+ }
199
  """
200
  )
201