openfree commited on
Commit
e898e0a
1 Parent(s): aaceb12

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +53 -0
app.css CHANGED
@@ -24,6 +24,59 @@ body {
24
  line-height: 1.5;
25
  }
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  /* 프롬프트 입력창 */
28
  .ant-input-textarea textarea {
29
  height: 300px !important;
 
24
  line-height: 1.5;
25
  }
26
 
27
+ /* 탭 스타일 강화 */
28
+ .main-tabs > div.tab-nav {
29
+ background: rgba(255, 255, 255, 0.95);
30
+ padding: 10px 10px 0 10px;
31
+ border-radius: 12px 12px 0 0;
32
+ box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
33
+ }
34
+
35
+ .main-tabs > div.tab-nav > button {
36
+ font-size: 1.2em !important;
37
+ padding: 0.8em 1.5em !important;
38
+ background: rgba(255, 255, 255, 0.9) !important;
39
+ border: 1px solid #eef2f6 !important;
40
+ border-bottom: none !important;
41
+ border-radius: 12px 12px 0 0 !important;
42
+ margin-right: 8px !important;
43
+ color: #94a3b8 !important;
44
+ font-weight: 500 !important;
45
+ transition: all 0.3s ease !important;
46
+ position: relative !important;
47
+ top: 1px !important;
48
+ }
49
+
50
+ .main-tabs > div.tab-nav > button:hover {
51
+ background: linear-gradient(to bottom, #ffffff, #f8fafc) !important;
52
+ color: #64748b !important;
53
+ transform: translateY(-2px);
54
+ }
55
+
56
+ .main-tabs > div.tab-nav > button.selected {
57
+ background: linear-gradient(45deg, #0084ff, #00a3ff) !important;
58
+ color: white !important;
59
+ border: none !important;
60
+ box-shadow: 0 4px 15px rgba(0,132,255,0.3) !important;
61
+ transform: translateY(-2px);
62
+ }
63
+
64
+ .main-tabs {
65
+ margin-top: -20px !important;
66
+ border-radius: 0 0 15px 15px !important;
67
+ box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
68
+ border: 1px solid rgba(255,255,255,0.8) !important;
69
+ background: white !important;
70
+ }
71
+
72
+ /* 탭 컨텐츠 영역 */
73
+ .main-tabs > div[role="tabpanel"] {
74
+ background: white;
75
+ border-radius: 0 0 12px 12px;
76
+ padding: 20px;
77
+ box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
78
+ }
79
+
80
  /* 프롬프트 입력창 */
81
  .ant-input-textarea textarea {
82
  height: 300px !important;