@@ -15,8 +15,10 @@ const FeatureList: FeatureItem[] = [
15
15
imgSrc : require ( "@site/static/img/files-toml.png" ) . default ,
16
16
description : (
17
17
< >
18
- < a href = "/docs/Users/channels" > Create your own channels in a simple TOML file and search through
19
- files, git repositories, environment variables, docker images, and more.
18
+ < a href = "/docs/Users/channels" >
19
+ Create your own channels in a simple TOML file and search through
20
+ files, git repositories, environment variables, docker images, and
21
+ more.
20
22
</ a >
21
23
</ >
22
24
) ,
@@ -27,8 +29,8 @@ const FeatureList: FeatureItem[] = [
27
29
description : (
28
30
< >
29
31
< a href = "/docs/Users/shell-integration" >
30
- Television integrates with your shell and provides autocompletion that is both
31
- extensible and configurable to use your own channels.
32
+ Television integrates with your shell and provides autocompletion that
33
+ is both extensible and configurable to use your own channels.
32
34
</ a >
33
35
</ >
34
36
) ,
@@ -48,11 +50,11 @@ function Feature({ title, imgSrc, description }: FeatureItem) {
48
50
< p > { description } </ p >
49
51
</ div >
50
52
< div className = "featureImageContainer" >
51
- < img
52
- src = { imgSrc }
53
+ < img
54
+ src = { imgSrc }
53
55
alt = { title }
54
- className = { styles . featureImage }
55
- role = "img"
56
+ className = { styles . featureImage }
57
+ role = "img"
56
58
/>
57
59
</ div >
58
60
</ div >
@@ -63,7 +65,7 @@ export default function HomepageFeatures(): ReactNode {
63
65
return (
64
66
< section className = { styles . features } >
65
67
< div className = "container" >
66
- < div className = "row" >
68
+ < div className = { clsx ( "row" , styles . featuresRow ) } >
67
69
{ FeatureList . map ( ( props , idx ) => (
68
70
< Feature key = { idx } { ...props } />
69
71
) ) }
0 commit comments