@@ -130,22 +130,22 @@ const SecurityItem: React.FunctionComponent<SecurityItemProps> = ({
130130 < div className = "px-4 py-2 ml-2 mb-2 border border-gray-400 bg-gray-100 rounded" >
131131 { securityProtocol && (
132132 < div className = "mt-1" >
133- < span className = "text-xs font-bold text-gray-600 mt-1 mr-1 uppercase" >
133+ < strong className = "text-xs text-gray-600 mt-1 mr-1 uppercase" >
134134 security.protocol:
135- </ span >
136- < span className = "inline-block font-bold no-underline bg-indigo-400 text-white text-xs rounded py-0 px-1 ml-1" >
135+ </ strong >
136+ < strong className = "inline-block no-underline bg-indigo-400 text-white text-xs rounded py-0 px-1 ml-1" >
137137 { securityProtocol }
138- </ span >
138+ </ strong >
139139 </ div >
140140 ) }
141141 { saslMechanism && (
142142 < div className = "mt-1" >
143- < span className = "text-xs font-bold text-gray-600 mt-1 mr-1 uppercase" >
143+ < strong className = "text-xs text-gray-600 mt-1 mr-1 uppercase" >
144144 sasl.mechanism:
145- </ span >
146- < span className = "inline-block font-bold no-underline bg-indigo-400 text-white text-xs rounded py-0 px-1 ml-1" >
145+ </ strong >
146+ < strong className = "inline-block no-underline bg-indigo-400 text-white text-xs rounded py-0 px-1 ml-1" >
147147 { saslMechanism }
148- </ span >
148+ </ strong >
149149 </ div >
150150 ) }
151151 </ div >
@@ -179,49 +179,49 @@ const SecurityItem: React.FunctionComponent<SecurityItemProps> = ({
179179 key = { flowName }
180180 >
181181 < div >
182- < span className = "text-xs font-bold text-gray-600 mt-1 mr-1 uppercase" >
182+ < strong className = "text-xs text-gray-600 mt-1 mr-1 uppercase" >
183183 Flow:
184- </ span >
185- < span className = "text-xs font-bold text-gray-600 mt-1 mr-1 uppercase" >
184+ </ strong >
185+ < strong className = "text-xs text-gray-600 mt-1 mr-1 uppercase" >
186186 { ServerHelpers . flowName ( flowName ) }
187- </ span >
187+ </ strong >
188188 </ div >
189189
190190 { authorizationUrl && (
191191 < div className = "mt-1" >
192- < span className = "text-xs font-bold text-gray-600 mt-1 mr-1 uppercase" >
192+ < strong className = "text-xs text-gray-600 mt-1 mr-1 uppercase" >
193193 Auth URL:
194- </ span >
194+ </ strong >
195195 < Href href = { authorizationUrl } className = "underline" >
196196 { authorizationUrl }
197197 </ Href >
198198 </ div >
199199 ) }
200200 { tokenUrl && (
201201 < div className = "mt-1" >
202- < span className = "text-xs font-bold text-gray-600 mt-1 mr-1 uppercase" >
202+ < strong className = "text-xs text-gray-600 mt-1 mr-1 uppercase" >
203203 Token URL:
204- </ span >
204+ </ strong >
205205 < Href href = { tokenUrl } className = "underline" >
206206 { tokenUrl }
207207 </ Href >
208208 </ div >
209209 ) }
210210 { refreshUrl && (
211211 < div className = "mt-1" >
212- < span className = "text-xs font-bold text-gray-600 mt-1 mr-1 uppercase" >
212+ < strong className = "text-xs text-gray-600 mt-1 mr-1 uppercase" >
213213 Refresh URL:
214- </ span >
214+ </ strong >
215215 < Href href = { refreshUrl } className = "underline" >
216216 { refreshUrl }
217217 </ Href >
218218 </ div >
219219 ) }
220220 { scopes && (
221221 < div className = "mt-1" >
222- < span className = "text-xs font-bold text-gray-600 mt-1 mr-1 uppercase" >
222+ < strong className = "text-xs text-gray-600 mt-1 mr-1 uppercase" >
223223 Scopes:
224- </ span >
224+ </ strong >
225225 < ul className = "inline-block" >
226226 { scopes &&
227227 Object . entries ( scopes ) . map ( ( [ scopeName , scopeDesc ] ) => (
0 commit comments