openfree commited on
Commit
de24f90
·
verified ·
1 Parent(s): 2c0310f

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +32 -22
app.css CHANGED
@@ -153,7 +153,7 @@ footer, .footer, div[class*="footer"], #footer {
153
  display: flex;
154
  gap: 8px;
155
  padding: 8px 0;
156
- justify-content: flex-end;
157
  border-bottom: 2px dashed var(--neutral-300);
158
  padding-bottom: 12px;
159
  margin-bottom: 12px;
@@ -220,35 +220,45 @@ footer, .footer, div[class*="footer"], #footer {
220
  box-shadow: var(--shadow-md);
221
  }
222
 
223
- /* 각 버튼 스타일 커스텀 */
224
- .ant-btn[title="전송"] {
225
- background: linear-gradient(to right, var(--primary), var(--secondary));
226
- border: none;
227
- color: white;
228
  }
229
 
230
- .ant-btn[title="증강"] {
231
- background: linear-gradient(to right, var(--tertiary), #9966cc);
232
- border: none;
233
- color: white;
234
  }
235
 
236
- .ant-btn[title="코드"] {
237
- background: linear-gradient(to right, var(--success), #66d9a8);
238
- border: none;
239
- color: white;
240
  }
241
 
242
- .ant-btn[title="배포"] {
243
- background: linear-gradient(to right, var(--warning), #ffcc66);
244
- border: none;
245
- color: white;
246
  }
247
 
248
- .ant-btn[title="클리어"] {
249
- background: linear-gradient(to right, #f44336, #ff7961);
250
- border: none;
251
- color: white;
 
 
 
 
 
 
 
 
 
 
252
  }
253
 
254
  #component-0 textarea,
 
153
  display: flex;
154
  gap: 8px;
155
  padding: 8px 0;
156
+ justify-content: space-between;
157
  border-bottom: 2px dashed var(--neutral-300);
158
  padding-bottom: 12px;
159
  margin-bottom: 12px;
 
220
  box-shadow: var(--shadow-md);
221
  }
222
 
223
+ /* 각 버튼 스타일 커스텀 - 클래스 기반 */
224
+ .send-btn {
225
+ background: linear-gradient(to right, var(--primary), var(--secondary)) !important;
226
+ border: none !important;
227
+ color: white !important;
228
  }
229
 
230
+ .boost-btn {
231
+ background: linear-gradient(to right, var(--tertiary), #9966cc) !important;
232
+ border: none !important;
233
+ color: white !important;
234
  }
235
 
236
+ .execute-btn {
237
+ background: linear-gradient(to right, var(--success), #66d9a8) !important;
238
+ border: none !important;
239
+ color: white !important;
240
  }
241
 
242
+ .deploy-btn {
243
+ background: linear-gradient(to right, var(--warning), #ffcc66) !important;
244
+ border: none !important;
245
+ color: white !important;
246
  }
247
 
248
+ .clear-btn {
249
+ background: linear-gradient(to right, #f44336, #ff7961) !important;
250
+ border: none !important;
251
+ color: white !important;
252
+ }
253
+
254
+ /* 메뉴 버튼 추가 스타일 */
255
+ .code-btn, .history-btn, .template-btn {
256
+ transition: all 0.3s ease;
257
+ }
258
+
259
+ .code-btn:hover, .history-btn:hover, .template-btn:hover {
260
+ transform: translateY(-2px);
261
+ box-shadow: var(--shadow-md);
262
  }
263
 
264
  #component-0 textarea,