File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
website-v3/src/components Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ if (automaticallyInferNextPrevious) {
46
46
href = { previous [1 ]}
47
47
className = " group inline-flex items-center gap-2 opacity-75 transition hover:opacity-100"
48
48
>
49
- <span class = " group-hover:text-docs-theme h-4 w-4 transition" >
49
+ <span class = " group-hover:text-docs-theme h-4 w-4 flex-shrink-0 transition" >
50
50
<ChevronLeftIcon />
51
51
</span >
52
52
<span >{ previous [0 ]} </span >
@@ -57,10 +57,10 @@ if (automaticallyInferNextPrevious) {
57
57
{ !! next && (
58
58
<Link
59
59
href = { next [1 ]}
60
- className = " group inline-flex items-center gap-2 opacity-75 transition hover:opacity-100"
60
+ className = " group inline-flex items-center gap-2 opacity-75 transition hover:opacity-100 text-right "
61
61
>
62
62
<span >{ next [0 ]} </span >
63
- <span class = " group-hover:text-docs-theme h-4 w-4 transition" >
63
+ <span class = " group-hover:text-docs-theme h-4 w-4 flex-shrink-0 transition" >
64
64
<ChevronRightIcon />
65
65
</span >
66
66
</Link >
Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ const Callout: React.FC<Props> = props => {
16
16
return (
17
17
< div
18
18
className = { cx (
19
- 'mb-3 flex items-center gap-2 overflow-hidden rounded-xl px-5 py-4 text-sm' ,
19
+ 'mb-3 flex items-center gap-4 overflow-hidden rounded-xl px-5 py-4 text-sm' ,
20
20
props . className ,
21
21
) }
22
22
>
23
- < span className = "h-6 w-6" > { props . icon } </ span >
23
+ < span className = "h-6 w-6 flex-shrink-0 " > { props . icon } </ span >
24
24
< span className = "[&>p]:m-0" > { props . children } </ span >
25
25
</ div >
26
26
) ;
You can’t perform that action at this time.
0 commit comments