Commit b914951 1 parent 51eda4d commit b914951 Copy full SHA for b914951
File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -166,14 +166,15 @@ export class BottomSheet extends LitElement {
166
166
private renderDismissButton = ( ) => {
167
167
if ( this . dismissible )
168
168
return html `
169
- < tap-icon-button
170
- @click =${ ( ) => this . handleDismiss ( ) }
171
- type ="button"
172
- size="small"
173
- variant="naked"
174
- >
175
- < tap-icon-cross color ="#000 "> </ tap-icon-cross >
176
- </ tap-icon-button >
169
+ < div class ="close-button ">
170
+ < tap-icon-button
171
+ @click =${ ( ) => this . handleDismiss ( ) }
172
+ type ="button"
173
+ size="small"
174
+ variant="naked">
175
+ < tap-icon-cross color ="#000 "> </ tap-icon-cross >
176
+ </ tap-icon-button >
177
+ </ div >
177
178
` ;
178
179
} ;
179
180
@@ -205,7 +206,7 @@ export class BottomSheet extends LitElement {
205
206
: html `
206
207
< div class ="bottom-sheet-header " part ="header ">
207
208
< div class ="title "> ${ this . title } </ div >
208
- < div class =" close-button " > ${ this . renderDismissButton ( ) } </ div >
209
+ ${ this . renderDismissButton ( ) }
209
210
</ div >
210
211
` }
211
212
< div class ="bottom-sheet-body " part ="body ">
You can’t perform that action at this time.
0 commit comments