fix: center aligned the load more button on batch student list

This commit is contained in:
Jannat Patel
2026-01-19 19:49:30 +05:30
parent 61909c8498
commit 0fbe015607
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -43,7 +43,7 @@
<ListRow
:row="row"
v-for="row in students.data"
class="group cursor-pointer"
class="group cursor-pointer hover:bg-surface-gray-2 rounded"
@click="openStudentProgressModal(row)"
>
<template #default="{ column, item }">
@@ -88,7 +88,7 @@
</div>
</template>
</ListSelectBanner>
<div class="mt-4" v-if="students.hasNextPage">
<div class="mt-4 flex justify-center" v-if="students.hasNextPage">
<Button @click="students.next()">
{{ __('Load More') }}
</Button>
@@ -170,7 +170,7 @@ const studentColumns = [
{
label: 'Full Name',
key: 'full_name',
width: '20rem',
width: '25rem',
icon: 'user',
},
{
+1 -1
View File
@@ -21,5 +21,5 @@ export default {
},
},
},
plugins: [require('@tailwindcss/line-clamp')],
plugins: [],
}