Skip to content

Commit f7d5ce1

Browse files
committed
fix: class order
1 parent b8221a8 commit f7d5ce1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ui/src/components/ticket/file/ImageModal.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<script setup lang="ts">
2-
import { X } from 'lucide-vue-next'
32
import { Button } from '@/components/ui/button'
43
4+
import { X } from 'lucide-vue-next'
5+
56
defineProps<{
67
modelValue: boolean
78
imageUrl: string
@@ -26,7 +27,7 @@ const closeModal = () => {
2627
<Button
2728
variant="ghost"
2829
size="icon"
29-
class="absolute -top-1 -right-1 h-8 w-8 rounded-full bg-white"
30+
class="absolute -right-1 -top-1 h-8 w-8 rounded-full bg-white"
3031
@click="closeModal"
3132
>
3233
<X class="h-5 w-5" />

0 commit comments

Comments
 (0)