Skip to content

Commit

Permalink
Update some style on modal and notes . .
Browse files Browse the repository at this point in the history
  • Loading branch information
krlan2789 committed Nov 9, 2024
1 parent 2c373f3 commit b29118d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/ModalComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
<div class="absolute top-0 border-b-[2px] border-quaternary dark:border-quaternaryDark w-full h-px">
</div>
<button type="button"
class="p-1 m-3 text-xl font-bold bg-transparent border-2 rounded-full cursor-pointer lan-text-primary"
class="p-2 m-3 text-xl font-bold bg-transparent border-2 rounded-full cursor-pointer lan-text-primary"
@click="onCloseModal()">
<CloseIcon class="w-auto h-8"></CloseIcon>
<CloseIcon class="w-auto h-6"></CloseIcon>
</button>
</section>
<!-- Modal Footer -->
Expand Down
2 changes: 1 addition & 1 deletion src/views/NotesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="w-full max-w-4xl px-3 mx-auto sm:px-6" v-if="dataUser.notes.articles.length > 0">
<transition-group name="slide-right" tag="ul" class="flex flex-col gap-8">
<li v-for="(data, index) in dataUser.notes.articles" :key="index"
class="flex flex-col w-full h-auto px-4 py-3 rounded-xl hover:bg-quaternary dark:hover:bg-quaternaryDark">
class="flex flex-col w-full h-auto px-4 py-3 transition duration-500 rounded-xl hover:bg-quaternary dark:hover:bg-quaternaryDark">
<RouterLink
v-if="(($route.params == null || ('' + $route.params.filter) == '') || data.topics?.includes($route.params.filter)) && $route.meta.url?.article"
:to="$route.meta.url.article + '/' + data.id + '/' + data.title">
Expand Down

0 comments on commit b29118d

Please sign in to comment.