|
4 | 4 | display: flex; |
5 | 5 | flex-direction: column; |
6 | 6 | height: 100%; |
7 | | - background-color: #fafafa; /* tokens.colorNeutralBackground1 */ |
8 | 7 | } |
9 | 8 |
|
10 | 9 | .home-input-content { |
|
13 | 12 | flex-direction: column; |
14 | 13 | justify-content: center; |
15 | 14 | align-items: center; |
16 | | - padding: 40px 24px; |
| 15 | + padding: 24px; |
17 | 16 | } |
18 | 17 |
|
19 | 18 | .home-input-center-content { |
|
29 | 28 | margin-bottom: 24px; |
30 | 29 | } |
31 | 30 |
|
32 | | -.home-input-title { |
33 | | - font-size: 28px; |
34 | | - font-weight: 600; |
35 | | - color: #242424; /* tokens.colorNeutralForeground1 */ |
36 | | -} |
37 | | - |
38 | 31 | .home-input-input-section { |
39 | 32 | width: 100%; |
40 | 33 | margin-bottom: 32px; |
|
83 | 76 |
|
84 | 77 | .home-input-quick-tasks-section { |
85 | 78 | width: 100%; |
86 | | - margin-top: 16px; |
| 79 | + margin-top: 8px; |
87 | 80 | } |
88 | 81 |
|
89 | 82 | .home-input-quick-tasks-header { |
90 | 83 | display: flex; |
91 | 84 | justify-content: space-between; |
92 | 85 | align-items: center; |
93 | | - margin-bottom: 16px; |
| 86 | + margin-bottom: 12px; |
94 | 87 | } |
95 | 88 |
|
96 | | -.home-input-quick-tasks-title { |
97 | | - font-size: 1rem; /* tokens.fontSizeBase400 */ |
98 | | - font-weight: 600; /* tokens.fontWeightSemibold */ |
99 | | - color: #242424; /* tokens.colorNeutralForeground1 */ |
100 | | -} |
101 | 89 |
|
102 | 90 | .home-input-quick-tasks { |
103 | | - display: grid; |
104 | | - grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); |
105 | | - gap: 16px; |
| 91 | + display: flex; |
| 92 | + gap: 12px; |
| 93 | + flex-wrap: wrap; |
| 94 | + justify-content: space-between; |
106 | 95 | } |
107 | 96 |
|
108 | 97 | .home-input-quick-task-card { |
109 | | - cursor: pointer; |
| 98 | + flex: 1; |
110 | 99 | display: flex; |
111 | 100 | flex-direction: column; |
112 | | - background-color: #fafafa; /* tokens.colorNeutralBackground1 */ |
113 | 101 | padding: 16px; |
114 | | - border: 1px solid #d1d1d1; /* tokens.colorNeutralStroke1 */ |
| 102 | + background-color: var(--colorNeutralBackground3); |
| 103 | + border: 1px solid var(--colorNeutralStroke2); |
115 | 104 | border-radius: 8px; |
| 105 | + cursor: pointer; |
| 106 | + box-shadow: none; |
116 | 107 | } |
117 | 108 |
|
118 | | -.home-input-quick-task-card:hover { |
119 | | - background-color: #f5f5f5; /* tokens.colorNeutralBackground2 */ |
120 | | -} |
121 | | - |
122 | | -.home-input-card-content { |
| 109 | +.home-input-quick-task-content { |
123 | 110 | display: flex; |
| 111 | + flex-direction: column; |
124 | 112 | gap: 12px; |
125 | 113 | } |
126 | 114 |
|
127 | | -.home-input-card-icon { |
128 | | - display: flex; |
129 | | - align-items: center; |
130 | | - justify-content: center; |
131 | | - width: 32px; |
132 | | - height: 32px; |
133 | | - border-radius: 4px; |
134 | | - color: #0f6cbd; /* tokens.colorBrandForeground1 */ |
| 115 | +.home-input-quick-task-icon { |
| 116 | + font-size: 20px; |
| 117 | + color: var(--colorBrandForeground1); |
| 118 | + margin-top: 2px; |
135 | 119 | } |
136 | 120 |
|
137 | | -.home-input-card-text-content { |
| 121 | +.home-input-quick-task-text-content { |
138 | 122 | display: flex; |
139 | 123 | flex-direction: column; |
140 | | - gap: 6px; |
141 | | - flex: 1; |
| 124 | + gap: 4px; |
142 | 125 | } |
143 | 126 |
|
144 | | -.home-input-card-title { |
145 | | - font-size: 0.875rem; /* tokens.fontSizeBase300 */ |
146 | | - font-weight: 600; /* tokens.fontWeightSemibold */ |
147 | | - color: #242424; /* tokens.colorNeutralForeground1 */ |
| 127 | +.home-input-quick-task-description { |
| 128 | + color: var(--colorNeutralForeground3); |
148 | 129 | } |
149 | 130 |
|
150 | | -.home-input-card-description { |
151 | | - font-size: 0.75rem; /* tokens.fontSizeBase200 */ |
152 | | - color: #616161; /* tokens.colorNeutralForeground2 */ |
153 | | - line-height: 1rem; /* tokens.lineHeightBase200 */ |
| 131 | +.home-input-quick-task-card:hover { |
| 132 | + background-color: #f5f5f5; /* tokens.colorNeutralBackground2 */ |
154 | 133 | } |
155 | 134 |
|
156 | 135 | .home-input-ai-footer { |
157 | | - display: flex; |
158 | | - justify-content: flex-end; |
159 | | - width: 100%; |
| 136 | + padding-bottom: 8px; |
160 | 137 | margin-top: 8px; |
161 | | - font-size: 0.625rem; /* tokens.fontSizeBase100 */ |
| 138 | + text-align: center; |
162 | 139 | color: #707070; /* tokens.colorNeutralForeground3 */ |
163 | 140 | } |
164 | 141 |
|
|
0 commit comments