File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class Contact extends React.Component {
38
38
const Link = getComponent ( "Link" )
39
39
40
40
return (
41
- < div >
41
+ < div className = "info__contact" >
42
42
{ url && < div > < Link href = { sanitizeUrl ( url ) } target = "_blank" > { name } - Website</ Link > </ div > }
43
43
{ email &&
44
44
< Link href = { sanitizeUrl ( `mailto:${ email } ` ) } >
@@ -66,7 +66,7 @@ class License extends React.Component {
66
66
let url = license . get ( "url" )
67
67
68
68
return (
69
- < div >
69
+ < div className = "info__license" >
70
70
{
71
71
url ? < Link target = "_blank" href = { sanitizeUrl ( url ) } > { name } </ Link >
72
72
: < span > { name } </ span >
@@ -133,15 +133,15 @@ export default class Info extends React.Component {
133
133
</ div >
134
134
135
135
{
136
- termsOfService && < div >
136
+ termsOfService && < div className = "info__tos" >
137
137
< Link target = "_blank" href = { sanitizeUrl ( termsOfService ) } > Terms of service</ Link >
138
138
</ div >
139
139
}
140
140
141
141
{ contact && contact . size ? < Contact getComponent = { getComponent } data = { contact } /> : null }
142
142
{ license && license . size ? < License getComponent = { getComponent } license = { license } /> : null }
143
143
{ externalDocsUrl ?
144
- < Link target = "_blank" href = { sanitizeUrl ( externalDocsUrl ) } > { externalDocsDescription || externalDocsUrl } </ Link >
144
+ < Link className = "info__extdocs" target = "_blank" href = { sanitizeUrl ( externalDocsUrl ) } > { externalDocsDescription || externalDocsUrl } </ Link >
145
145
: null }
146
146
147
147
</ div >
You can’t perform that action at this time.
0 commit comments