Skip to content

Commit

Permalink
increase history scrollbar padding
Browse files Browse the repository at this point in the history
  • Loading branch information
radek00 committed Apr 28, 2024
1 parent 57fda6d commit 5ac60b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defineProps<{
<div class="flex items-center justify-between mb-4" v-if="uploads">
<h5 class="text-xl font-bold leading-none text-white">Upload history</h5>
</div>
<div class="overflow-auto max-h-40 lg:max-h-96 p-2">
<div class="overflow-auto max-h-40 lg:max-h-96 pr-4">
<ul role="list" class="divide-y divide-gray-700">
<HistoryElement
v-for="(upload, idx) in uploads"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
</ConfirmModalVue>
</div>
<div
class="w-11/12 max-w-md p-4 border rounded-lg shadow sm:p-8 bg-gray-800 border-gray-700"
class="w-11/12 max-w-md p-4 border rounded-lg shadow sm:p-8 bg-gray-800 border-gray-800"
v-if="storageItem.length > 0"
>
<UploadHistory :uploads="storageItem"></UploadHistory>
Expand Down

0 comments on commit 5ac60b1

Please sign in to comment.