File tree 2 files changed +1
-6
lines changed
2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ const Input: FC<InputProps> = (props) => {
68
68
< button
69
69
type = "button"
70
70
aria-label = "Clear"
71
+ tabIndex = { 100 }
71
72
onMouseDown = { ( ) => props . setValue ( "" ) }
72
73
className = { twMerge (
73
74
`absolute top-1/2 -translate-y-1/2 cursor-pointer right-2
Original file line number Diff line number Diff line change @@ -28,21 +28,15 @@ const Preview: FC<PreviewProps> = (props) => {
28
28
</ a >
29
29
30
30
< div className = "w-[95%] h-[.8px] bg-gh-border mx-auto my-2" />
31
-
32
31
< div className = "mx-4 text-gh-text font-semibold my-2" > Markdown</ div >
33
-
34
32
< Codeblock code = { markdown } />
35
33
36
34
< div className = "w-[95%] h-[.8px] bg-gh-border mx-auto my-4" />
37
-
38
35
< div className = "mx-4 text-gh-text font-semibold my-2" > URL</ div >
39
-
40
36
< Codeblock code = { props . link } />
41
37
42
38
< div className = "w-[95%] h-[.8px] bg-gh-border mx-auto my-4" />
43
-
44
39
< div className = "mx-4 text-gh-text font-semibold my-2" > HTML</ div >
45
-
46
40
< Codeblock code = { `<img src="${ props . link } " alt="My Tech Stack" />` } />
47
41
</ section >
48
42
) ;
You can’t perform that action at this time.
0 commit comments