Skip to content

Commit

Permalink
Fix overflow hidden inside grid element
Browse files Browse the repository at this point in the history
  • Loading branch information
yaaax committed Jul 31, 2024
1 parent f76ace2 commit c3f819a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion confiture-web-app/src/components/report/ReportCriteria.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const hasFilters = computed(() => {
.main {
display: grid;
grid-template-columns: 20rem 1fr;
grid-template-columns: 20rem minmax(0, 1fr);
gap: 2rem;
}
Expand Down

0 comments on commit c3f819a

Please sign in to comment.