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 {
3838 const Link = getComponent ( "Link" )
3939
4040 return (
41- < div >
41+ < div className = "info__contact" >
4242 { url && < div > < Link href = { sanitizeUrl ( url ) } target = "_blank" > { name } - Website</ Link > </ div > }
4343 { email &&
4444 < Link href = { sanitizeUrl ( `mailto:${ email } ` ) } >
@@ -66,7 +66,7 @@ class License extends React.Component {
6666 let url = license . get ( "url" )
6767
6868 return (
69- < div >
69+ < div className = "info__license" >
7070 {
7171 url ? < Link target = "_blank" href = { sanitizeUrl ( url ) } > { name } </ Link >
7272 : < span > { name } </ span >
@@ -133,15 +133,15 @@ export default class Info extends React.Component {
133133 </ div >
134134
135135 {
136- termsOfService && < div >
136+ termsOfService && < div className = "info__tos" >
137137 < Link target = "_blank" href = { sanitizeUrl ( termsOfService ) } > Terms of service</ Link >
138138 </ div >
139139 }
140140
141141 { contact && contact . size ? < Contact getComponent = { getComponent } data = { contact } /> : null }
142142 { license && license . size ? < License getComponent = { getComponent } license = { license } /> : null }
143143 { externalDocsUrl ?
144- < Link target = "_blank" href = { sanitizeUrl ( externalDocsUrl ) } > { externalDocsDescription || externalDocsUrl } </ Link >
144+ < Link className = "info__extdocs" target = "_blank" href = { sanitizeUrl ( externalDocsUrl ) } > { externalDocsDescription || externalDocsUrl } </ Link >
145145 : null }
146146
147147 </ div >
You can’t perform that action at this time.
0 commit comments