fix: minor ui changes

This commit is contained in:
Jannat Patel
2024-10-01 10:43:37 +05:30
parent 008cc66cdd
commit 8a17dca351
2 changed files with 17 additions and 17 deletions

View File

@@ -114,17 +114,6 @@ const tabsStructure = computed(() => {
},
],
},
{
label: 'Settings',
hideLabel: true,
items: [
{
label: 'Categories',
description: 'Manage the members of your learning system',
icon: 'Network',
},
],
},
{
label: 'Settings',
hideLabel: true,
@@ -166,6 +155,17 @@ const tabsStructure = computed(() => {
},
],
},
{
label: 'Settings',
hideLabel: true,
items: [
{
label: 'Categories',
description: 'Manage the members of your learning system',
icon: 'Network',
},
],
},
{
label: 'Customise',
hideLabel: false,

View File

@@ -1,5 +1,5 @@
<template>
<div class="flex flex-col min-h-0">
<div class="flex flex-col h-full">
<div class="flex items-center justify-between">
<div class="text-xl font-semibold mb-1">
{{ label }}
@@ -21,11 +21,11 @@
class="w-1/2"
/>
</div>
<div class="flex flex-row-reverse mt-auto">
<Button variant="solid" @click="update">
{{ __('Update') }}
</Button>
</div>
</div>
<div class="flex flex-row-reverse mt-auto">
<Button variant="solid" @click="update">
{{ __('Update') }}
</Button>
</div>
</div>
</template>