tg app fix

This commit is contained in:
xds
2025-10-28 09:36:29 +03:00
parent eb70f70100
commit 98b1f040ab
2 changed files with 5 additions and 3 deletions

View File

@@ -107,8 +107,8 @@ onBeforeUnmount(() => {
<Toolbar /> <Toolbar />
</div> </div>
<div class="flex flex-col w-full h-full items-end px-4 gap-4"> <div class="flex flex-col w-full h-full items-end px-4 gap-4 pb-24">
<router-view class="w-full pb-5" /> <router-view class="w-full pb-24" />
</div> </div>
<nav <nav

View File

@@ -49,10 +49,11 @@ onMounted(async () => {
</script> </script>
<template> <template>
<div class="!pb-10">
<div class="card"> <div class="card">
<div v-for="key in recurrents.keys()" :key="recurrents[key].id" <div v-for="key in recurrents.keys()" :key="recurrents[key].id"
@click="router.push(`/recurrents/${recurrents[key].id}/edit`)" @click="router.push(`/recurrents/${recurrents[key].id}/edit`)"
class="flex flex-col w-full gap- pl-5 items-start justify-items-center font-bold "> class="flex flex-col w-full pl-5 items-start justify-items-center font-bold ">
<div class="flex-row gap-2 w-full items-center justify-between"> <div class="flex-row gap-2 w-full items-center justify-between">
<div class="w-full flex items-center justify-between"> <div class="w-full flex items-center justify-between">
<div class="flex-row items-center gap-2 "> <div class="flex-row items-center gap-2 ">
@@ -75,6 +76,7 @@ onMounted(async () => {
</div> </div>
</div> </div>
</div>
</template> </template>
<style scoped> <style scoped>