Skip to content

Commit

Permalink
style: gantt view button styles
Browse files Browse the repository at this point in the history
  • Loading branch information
nichenqin committed Jul 6, 2023
1 parent 3dd8589 commit 743a88f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions apps/frontend/src/lib/gantt/GanttView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,14 @@

<div class="w-full">
<div class="p-2 text-gray-500">
<div class="flex justify-end">
<button on:click={previous}>
<div class="flex justify-end gap-2">
<button
on:click={previous}
class="p-1 hover:bg-gray-100 w-6 h-6 inline-flex items-center justify-center transition"
>
<i class="ti ti-chevron-left" />
</button>
<button on:click={next}>
<button on:click={next} class="p-1 hover:bg-gray-100 w-6 h-6 inline-flex items-center justify-center transition">
<i class="ti ti-chevron-right" />
</button>
</div>
Expand Down

0 comments on commit 743a88f

Please sign in to comment.