Skip to content

Commit

Permalink
fix: change focus sheet height
Browse files Browse the repository at this point in the history
  • Loading branch information
wd4000 committed Feb 4, 2024
1 parent a8ed346 commit e0166b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/runtime/components/e/dialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const emit = defineEmits(["update:modelValue"]);
.dialog-wrap {
position: fixed;
pointer-events: none;
z-index: 4;
z-index: 6;
width: 100%;
height: 100%;
top: 0px;
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/e/dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ const onActivatorClick = () => {
background-color: var(--e-color-elev-2);
color: var(--e-color-dark);
z-index: 4;
z-index: 6;
flex-shrink: 1;
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/e/focus-sheet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const emit = defineEmits(["update:modelValue"]);
height: 100%;
left: 0px;
top: 0px;
z-index: 3;
z-index: 5;
//background-color: red;
&.opaque-on-desktop {
Expand Down

0 comments on commit e0166b0

Please sign in to comment.