File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export default function EmptyCard({
30
30
< div className = "max-w-[90%] space-y-1.5 text-center md:max-w-[60%]" >
31
31
< div className = "space-y-2" >
32
32
{ IconElm && (
33
- < IconElm className = "mx-auto h-6 w-6 text-blue-600 dark:text-blue-400 " />
33
+ < IconElm className = "mx-auto h-5 w-5 text-blue-600 dark:text-blue-600 " />
34
34
) }
35
35
< h4 className = "text-base font-bold leading-none text-black dark:text-white" >
36
36
{ headline }
Original file line number Diff line number Diff line change @@ -168,15 +168,15 @@ export default function SettingsMacrosRoute() {
168
168
< h3 className = "truncate text-sm font-semibold text-black dark:text-white" >
169
169
{ macro . name }
170
170
</ h3 >
171
- < p className = "ml-4 mt-1 overflow-hidden text-xs text-slate-500 dark:text-slate-400" >
171
+ < p className = "mt-1 ml-4 overflow-hidden text-xs text-slate-500 dark:text-slate-400" >
172
172
< span className = "flex flex-col items-start gap-1" >
173
173
{ macro . steps . map ( ( step , stepIndex ) => {
174
174
const StepIcon = stepIndex === 0 ? LuMoveRight : LuCornerDownRight ;
175
175
176
176
return (
177
177
< span key = { stepIndex } className = "inline-flex items-center" >
178
178
< StepIcon className = "mr-1 h-3 w-3 shrink-0 text-slate-400 dark:text-slate-500" />
179
- < span className = "px-2 py-0.5 rounded-md border border-slate-200/50 dark:border -slate-700/ 50 bg- slate-50 dark:bg-slate-800" >
179
+ < span className = "rounded-md border border-slate-200/50 bg -slate-50 px-2 py-0.5 dark:border- slate-700/ 50 dark:bg-slate-800" >
180
180
{ ( Array . isArray ( step . modifiers ) &&
181
181
step . modifiers . length > 0 ) ||
182
182
( Array . isArray ( step . keys ) && step . keys . length > 0 ) ? (
@@ -338,6 +338,7 @@ export default function SettingsMacrosRoute() {
338
338
< EmptyCard
339
339
IconElm = { LuCommand }
340
340
headline = "Create Your First Macro"
341
+ description = "Combine keystrokes into a single action"
341
342
BtnElm = {
342
343
< Button
343
344
size = "SM"
You can’t perform that action at this time.
0 commit comments