@@ -57,10 +57,12 @@ export class UUICardBlockTypeElement extends UUICardElement {
5757 return html `
5858 <butto n
5959 id= "open-part"
60+ class = "uui-text"
6061 tabindex = ${ this . disabled ? ( nothing as any ) : '0' }
6162 @click = ${ this . handleOpenClick }
6263 @keydown = ${ this . handleOpenKeydown } >
63- <strong> ${ this . name } </ strong> <small> ${ this . description } </ small>
64+ <span id= "name" > ${ this . name } </ span>
65+ <small> ${ this . description } </ small>
6466 </ butto n>
6567 ` ;
6668 }
@@ -69,6 +71,7 @@ export class UUICardBlockTypeElement extends UUICardElement {
6971 return html `
7072 <a
7173 id= "open-part"
74+ class = "uui-text"
7275 tabindex = ${ this . disabled ? ( nothing as any ) : '0' }
7376 href= ${ ifDefined ( ! this . disabled ? this . href : undefined ) }
7477 target= ${ ifDefined ( this . target || undefined ) }
@@ -78,7 +81,8 @@ export class UUICardBlockTypeElement extends UUICardElement {
7881 this . target === '_blank' ? 'noopener noreferrer' : undefined ,
7982 ) ,
8083 ) } >
81- <strong> ${ this . name } </ strong> <small> ${ this . description } </ small>
84+ <span id= "name" > ${ this . name } </ span>
85+ <small> ${ this . description } </ small>
8286 </ a>
8387 ` ;
8488 }
@@ -121,12 +125,11 @@ export class UUICardBlockTypeElement extends UUICardElement {
121125 border-top : 1px solid var (--uui-color-divider );
122126 border-radius : 0 0 var (--uui-border-radius ) var (--uui-border-radius );
123127 font-family : inherit;
124- font-size : var (--uui-type-small-size );
125128 box-sizing : border-box;
126129 padding : var (--uui-size-2 ) var (--uui-size-4 );
127130 display : flex;
128131 flex-direction : column;
129- line-height : var ( --uui-size-6 ) ;
132+ line-height : normal ;
130133 }
131134
132135 : host ([disabled ]) # open-part {
0 commit comments