Skip to content

Commit

Permalink
Code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-cintra committed Jan 27, 2025
1 parent 9af769b commit f431b92
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<template v-if="showSeoForm">
<div>
<div class="mb-2 mt-2 flex items-center">
<div class="mt-2 mb-2 flex items-center">
<div
class="from-neutral-3 to-neutral-6 mr-4 flex h-10 w-10 rounded-full bg-gradient-to-bl"
></div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<p class="mb-1 mt-5">Author</p>
<p class="mt-5 mb-1">Author</p>
<AppCombobox
v-model="postStore.post.blog_author_id"
:options="authors"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<p class="mb-1 mt-5">Category</p>
<p class="mt-5 mb-1">Category</p>
<AppCombobox
v-model="postStore.post.blog_category_id"
:options="categories"
Expand Down
2 changes: 1 addition & 1 deletion stubs/resources/js/Pages/BlogPost/Components/PostSeo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<template v-if="showSeoForm">
<div>
<div class="mb-2 mt-2 flex items-center">
<div class="mt-2 mb-2 flex items-center">
<div
class="from-neutral-3 to-neutral-6 mr-4 flex h-10 w-10 rounded-full bg-gradient-to-bl"
></div>
Expand Down
2 changes: 1 addition & 1 deletion stubs/resources/js/Pages/BlogPost/Components/PostTags.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<p class="mb-1 mt-5">Tag</p>
<p class="mt-5 mb-1">Tag</p>
<AppCombobox
v-model="selectedTag"
:options="tags"
Expand Down
2 changes: 1 addition & 1 deletion stubs/resources/js/Pages/BlogPost/PostForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</template>
</AppCard>

<AppCard class="mt-4 w-full xl:ml-5 xl:mt-0 xl:w-4/12">
<AppCard class="mt-4 w-full xl:mt-0 xl:ml-5 xl:w-4/12">
<template #title> Post Info </template>
<template #content>
<PostPublishDate />
Expand Down

0 comments on commit f431b92

Please sign in to comment.