Skip to content

Commit 69df1da

Browse files
authored
Merge pull request #358 from connorabbas/master
Catch up
2 parents 4b1feac + c6364cd commit 69df1da

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

resources/js/components/DeleteUserModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const deleteUser = () => {
3030
<template>
3131
<Dialog
3232
v-model:visible="modalOpen"
33-
class="m-4 sm:m-0 w-[40rem]"
33+
class="w-[40rem]"
3434
position="center"
3535
header="Are you sure you want to delete your account?"
3636
:draggable="false"

resources/js/layouts/app/HeaderLayout.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ const toggleMobileUserMenu = (event) => {
7676
</div>
7777
</template>
7878
</Drawer>
79+
<ScrollTop
80+
:buttonProps="{ class: 'fixed! right-4! bottom-4! md:right-8! md:bottom-8! z-[1000]!', rounded: true, raised: true }"
81+
/>
7982
</Teleport>
8083
</ClientOnly>
8184
<div class="min-h-screen">

resources/js/layouts/app/SidebarLayout.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ const toggleMobileUserMenu = (event) => {
7474
</div>
7575
</template>
7676
</Drawer>
77+
<ScrollTop
78+
:buttonProps="{ class: 'fixed! right-4! bottom-4! md:right-8! md:bottom-8! z-[1000]!', rounded: true, raised: true }"
79+
/>
7780
</Teleport>
7881
</ClientOnly>
7982

resources/js/theme/global-pt.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
* https://primevue.org/passthrough/#global
44
*/
55
export default {
6+
dialog: {
7+
root: {
8+
class: 'm-4 sm:m-0'
9+
},
10+
mask: {
11+
class: 'backdrop-blur-xs'
12+
},
13+
},
614
toast: {
715
root: {
816
// Full width/centered on mobile, bottom right desktop

0 commit comments

Comments
 (0)