Skip to content

Commit f5e7494

Browse files
committed
test(ac): comment out transform
1 parent c3d74ad commit f5e7494

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

core/src/components/action-sheet/action-sheet.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868

6969
.action-sheet-wrapper {
7070
@include position(null, 0, 0, 0);
71-
@include transform(translate3d(0, 100%, 0));
71+
// @include transform(translate3d(0, 100%, 0));
7272

7373
display: block;
7474
position: absolute;

core/src/components/action-sheet/action-sheet.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,9 @@ export class ActionSheet implements ComponentInterface, OverlayInterface {
385385
>
386386
<ion-backdrop tappable={this.backdropDismiss} />
387387

388-
<div class="action-sheet-wrapper ion-overlay-wrapper" ref={(el) => (this.wrapperEl = el)}>
389-
<div tabindex="0"></div>
388+
<div tabindex="0"></div>
390389

390+
<div class="action-sheet-wrapper ion-overlay-wrapper" ref={(el) => (this.wrapperEl = el)}>
391391
<div class="action-sheet-container">
392392
<div class="action-sheet-group" ref={(el) => (this.groupEl = el)}>
393393
{(header || this.subHeader) && (
@@ -448,9 +448,9 @@ export class ActionSheet implements ComponentInterface, OverlayInterface {
448448
</div>
449449
)}
450450
</div>
451-
452-
<div tabindex="0"></div>
453451
</div>
452+
453+
<div tabindex="0"></div>
454454
</Host>
455455
);
456456
}

0 commit comments

Comments
 (0)