Skip to content

Commit

Permalink
Improve admin table dropdown cutoff
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Nov 28, 2023
1 parent 84a2fe6 commit 7700129
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/routes/(authenticated)/admin/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<Input label="" placeholder={$t('admin_dashboard.filter_placeholder')} bind:value={$queryParamValues.userSearch} debounce />

<div class="divider" />
<div class="overflow-x-auto min-h-[255px]">
<div class="overflow-x-auto min-h-[300px]">
<table class="table table-lg">
<thead>
<tr class="bg-base-200">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ async function softDeleteProject(project: Project): Promise<void> {
</FilterBar>

<div class="divider"/>
<div class="overflow-x-auto min-h-[225px]">
<div class="overflow-x-auto min-h-[270px]">
<table class="table table-lg">
<thead>
<tr class="bg-base-200">
Expand Down

0 comments on commit 7700129

Please sign in to comment.