Skip to content

Commit 3240e88

Browse files
committed
test(action-sheet): change styles
1 parent 6ced157 commit 3240e88

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@
101101
font-family: inherit;
102102

103103
overflow: hidden;
104+
105+
z-index: 0;
104106
}
105107

106108
.action-sheet-button:disabled {
@@ -123,7 +125,7 @@
123125
width: 100%;
124126
height: 100%;
125127

126-
z-index: 1;
128+
// z-index: 1;
127129
}
128130

129131
.action-sheet-container {
@@ -177,9 +179,9 @@
177179
// Action Sheet: States
178180
// --------------------------------------------------
179181

180-
.action-sheet-button::after {
181-
@include button-state();
182-
}
182+
// .action-sheet-button::after {
183+
// @include button-state();
184+
// }
183185

184186

185187
// Action Sheet: Selected

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,7 @@ export class ActionSheet implements ComponentInterface, OverlayInterface {
388388
<div tabindex="0"></div>
389389

390390
<div class="action-sheet-wrapper ion-overlay-wrapper" ref={(el) => (this.wrapperEl = el)}>
391+
<div class="action-sheet-container">
391392
<div class="action-sheet-group" ref={(el) => (this.groupEl = el)}>
392393
{header !== undefined && (
393394
<div
@@ -442,6 +443,7 @@ export class ActionSheet implements ComponentInterface, OverlayInterface {
442443
</button>
443444
</div>
444445
)}
446+
</div>
445447
</div>
446448

447449
<div tabindex="0"></div>

0 commit comments

Comments
 (0)