File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ export const SignatureOutput = (props: GeneratorReducerState['config'] & Generat
31
31
< h3 className = "text-lg font-semibold text-zinc-100" > Signature Preview</ h3 >
32
32
33
33
< div className = "flex flex-nowrap items-center justify-end gap-4" >
34
- < Button size = "sm " rounded = "md" onClick = { handleCopyHtml } >
34
+ < Button size = "md " rounded = "md" onClick = { handleCopyHtml } >
35
35
< Icon icon = "copy" size = "sm" />
36
36
HTML
37
37
</ Button >
38
38
39
- < Button size = "sm " rounded = "md" onClick = { handleCopyRichText } >
39
+ < Button size = "md " rounded = "md" onClick = { handleCopyRichText } >
40
40
< Icon icon = "copy" size = "sm" />
41
41
Rich Text
42
42
</ Button >
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ type ButtonSize = typeof BUTTON_SIZE[keyof typeof BUTTON_SIZE];
12
12
const getButtonSizeClass = ( size : ButtonSize ) => {
13
13
switch ( size ) {
14
14
case BUTTON_SIZE . sm :
15
- return "px-4 py-1 text-sm font-medium" ;
15
+ return "px-3 py-1.5 text-xs font-medium" ;
16
16
case BUTTON_SIZE . md :
17
- return "px-4 py-2 text-base font-medium" ;
17
+ return "px-4 py-2 text-sm font-medium" ;
18
18
case BUTTON_SIZE . lg :
19
- return "px-6 py-3 text-lg font-medium" ;
19
+ return "px-6 py-3 text-base font-medium" ;
20
20
case BUTTON_SIZE . icon :
21
21
return "p-2" ;
22
22
}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const ICON_SIZE = {
12
12
type IconSize = typeof ICON_SIZE [ keyof typeof ICON_SIZE ] ;
13
13
14
14
const ICON_SIZE_CLASS = {
15
- sm : "w-4 h-4 " ,
15
+ sm : "w-3 h-3 " ,
16
16
md : "w-5 h-5" ,
17
17
lg : "w-6 h-6" ,
18
18
xl : "w-8 h-8" ,
You can’t perform that action at this time.
0 commit comments