Skip to content

Commit

Permalink
fix: overlap of select-multiple-items component (#1221)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianpoy authored Jan 6, 2024
2 parents f732cc8 + a6144f9 commit f793bb7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
z-index: 2;
background-color: var(--ion-background-tint-color);
box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.4);
max-height: 150px;
}

.results-list-container {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
select-multiple-items {
margin-bottom: 100px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,6 @@ <h2>{{ 'pages.editRecipe.input.labels' | translate }}</h2>
</div>
</div>

<br />
<br />
<br />

<div class="ion-padding">
<ion-button *ngIf="recipe.id" expand="block" (click)="save()">
{{ 'pages.editRecipe.save' | translate }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
padding: 16px;
padding-top: 0;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, auto));
grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), auto));
background: var(--ion-item-background);
margin-bottom: 100px;
}

0 comments on commit f793bb7

Please sign in to comment.