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', label: 'Settings',
hideLabel: true, 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', label: 'Customise',
hideLabel: false, hideLabel: false,

View File

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