Skip to content

Commit 3e0ff98

Browse files
authored
Merge pull request #56 from connorabbas/develop
Cleanup
2 parents 7f6446f + 5e1c64f commit 3e0ff98

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

resources/js/Layouts/AuthenticatedLayout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ watchEffect(() => {
195195
<Button
196196
label="Profile"
197197
icon="pi pi-user"
198-
class="w-full"
198+
fluid
199199
severity="secondary"
200200
outlined
201201
></Button>

resources/js/Pages/Auth/ForgotPassword.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ onMounted(() => {
4949
id="email"
5050
type="email"
5151
v-model="form.email"
52-
class="w-full"
52+
fluid
5353
:invalid="Boolean(form.errors.email)"
5454
autocomplete="username"
5555
/>

resources/js/Pages/Auth/Login.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ onMounted(() => {
5050
id="email"
5151
type="email"
5252
v-model="form.email"
53-
class="w-full"
53+
fluid
5454
:invalid="Boolean(form.errors.email)"
5555
autocomplete="username"
5656
/>
@@ -71,7 +71,7 @@ onMounted(() => {
7171
id="password"
7272
type="password"
7373
v-model="form.password"
74-
class="w-full"
74+
fluid
7575
:invalid="Boolean(form.errors.password)"
7676
autocomplete="current-password"
7777
/>

resources/js/Pages/Auth/Register.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ onMounted(() => {
3535
id="name"
3636
type="text"
3737
v-model="form.name"
38-
class="w-full"
38+
fluid
3939
:invalid="Boolean(form.errors.name)"
4040
required
4141
autocomplete="name"
@@ -56,7 +56,7 @@ onMounted(() => {
5656
id="email"
5757
type="email"
5858
v-model="form.email"
59-
class="w-full"
59+
fluid
6060
:invalid="Boolean(form.errors.email)"
6161
required
6262
autocomplete="username"
@@ -77,7 +77,7 @@ onMounted(() => {
7777
id="password"
7878
type="password"
7979
v-model="form.password"
80-
class="w-full"
80+
fluid
8181
:invalid="Boolean(form.errors.password)"
8282
required
8383
autocomplete="new-password"
@@ -98,7 +98,7 @@ onMounted(() => {
9898
id="password_confirmation"
9999
type="password"
100100
v-model="form.password_confirmation"
101-
class="w-full"
101+
fluid
102102
:invalid="Boolean(form.errors.password_confirmation)"
103103
required
104104
autocomplete="new-password"
@@ -116,7 +116,7 @@ onMounted(() => {
116116
<div class="flex justify-end items-center pt-2">
117117
<Link
118118
:href="route('login')"
119-
class="mr-4 text-muted-color underline text-muted-color hover:text-color"
119+
class="mr-4 underline text-muted-color hover:text-color"
120120
>
121121
Already registered?
122122
</Link>

resources/js/Pages/Auth/ResetPassword.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ onMounted(() => {
4646
id="email"
4747
type="email"
4848
v-model="form.email"
49-
class="w-full"
49+
fluid
5050
:invalid="Boolean(form.errors.email)"
5151
required
5252
autocomplete="username"
@@ -67,7 +67,7 @@ onMounted(() => {
6767
id="password"
6868
type="password"
6969
v-model="form.password"
70-
class="w-full"
70+
fluid
7171
:invalid="Boolean(form.errors.password)"
7272
required
7373
autocomplete="new-password"
@@ -88,7 +88,7 @@ onMounted(() => {
8888
id="password_confirmation"
8989
type="password"
9090
v-model="form.password_confirmation"
91-
class="w-full"
91+
fluid
9292
:invalid="Boolean(form.errors.password_confirmation)"
9393
required
9494
autocomplete="new-password"

resources/js/Pages/Auth/VerifyEmail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const verificationLinkSent = computed(
4949
<Link
5050
:href="route('logout')"
5151
method="post"
52-
class="text-muted-color underline text-muted-color hover:text-color"
52+
class="underline text-muted-color hover:text-color"
5353
>Log Out</Link
5454
>
5555
</div>

resources/js/Pages/Profile/Edit.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const props = defineProps({
2626

2727
<Container>
2828
<div class="py-4 md:py-8">
29-
<div class="space-y-6">
29+
<div class="space-y-4 md:space-y-8">
3030
<Card
3131
:pt="{
3232
body: {

resources/js/Pages/Profile/Partials/DeleteUserForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function focusPasswordInput() {
5151
type="password"
5252
placeholder="Password"
5353
v-model="form.password"
54-
class="w-full"
54+
fluid
5555
:invalid="Boolean(form.errors.password)"
5656
autocomplete="current-password"
5757
@keyup.enter="deleteUser"

resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const updatePassword = () => {
5252
ref="current-password-input"
5353
type="password"
5454
v-model="form.current_password"
55-
class="w-full"
55+
fluid
5656
:invalid="Boolean(form.errors?.current_password)"
5757
autocomplete="current-password"
5858
/>
@@ -74,7 +74,7 @@ const updatePassword = () => {
7474
ref="new-password-input"
7575
type="password"
7676
v-model="form.password"
77-
class="w-full"
77+
fluid
7878
:invalid="Boolean(form.errors.password)"
7979
autocomplete="new-password"
8080
/>
@@ -95,7 +95,7 @@ const updatePassword = () => {
9595
id="password_confirmation"
9696
type="password"
9797
v-model="form.password_confirmation"
98-
class="w-full"
98+
fluid
9999
:invalid="Boolean(form.errors.password_confirmation)"
100100
autocomplete="new-password"
101101
/>

resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ onMounted(() => {
5353
id="name"
5454
type="text"
5555
v-model="form.name"
56-
class="w-full"
56+
fluid
5757
:invalid="Boolean(form.errors.name)"
5858
autocomplete="name"
5959
/>
@@ -73,7 +73,7 @@ onMounted(() => {
7373
id="email"
7474
type="email"
7575
v-model="form.email"
76-
class="w-full"
76+
fluid
7777
:invalid="Boolean(form.errors.email)"
7878
autocomplete="username"
7979
/>
@@ -93,7 +93,7 @@ onMounted(() => {
9393
<Link
9494
:href="route('verification.send')"
9595
method="post"
96-
class="underline text-sm text-muted-color underline text-muted-color hover:text-color"
96+
class="underline text-sm text-muted-color hover:text-color"
9797
>
9898
Click here to re-send the verification email.
9999
</Link>

0 commit comments

Comments
 (0)