File tree Expand file tree Collapse file tree 10 files changed +21
-21
lines changed Expand file tree Collapse file tree 10 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ watchEffect(() => {
195
195
<Button
196
196
label =" Profile"
197
197
icon =" pi pi-user"
198
- class = " w-full "
198
+ fluid
199
199
severity =" secondary"
200
200
outlined
201
201
></Button >
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ onMounted(() => {
49
49
id =" email"
50
50
type =" email"
51
51
v-model =" form.email"
52
- class = " w-full "
52
+ fluid
53
53
:invalid =" Boolean(form.errors.email)"
54
54
autocomplete =" username"
55
55
/>
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ onMounted(() => {
50
50
id =" email"
51
51
type =" email"
52
52
v-model =" form.email"
53
- class = " w-full "
53
+ fluid
54
54
:invalid =" Boolean(form.errors.email)"
55
55
autocomplete =" username"
56
56
/>
@@ -71,7 +71,7 @@ onMounted(() => {
71
71
id =" password"
72
72
type =" password"
73
73
v-model =" form.password"
74
- class = " w-full "
74
+ fluid
75
75
:invalid =" Boolean(form.errors.password)"
76
76
autocomplete =" current-password"
77
77
/>
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ onMounted(() => {
35
35
id =" name"
36
36
type =" text"
37
37
v-model =" form.name"
38
- class = " w-full "
38
+ fluid
39
39
:invalid =" Boolean(form.errors.name)"
40
40
required
41
41
autocomplete =" name"
@@ -56,7 +56,7 @@ onMounted(() => {
56
56
id =" email"
57
57
type =" email"
58
58
v-model =" form.email"
59
- class = " w-full "
59
+ fluid
60
60
:invalid =" Boolean(form.errors.email)"
61
61
required
62
62
autocomplete =" username"
@@ -77,7 +77,7 @@ onMounted(() => {
77
77
id =" password"
78
78
type =" password"
79
79
v-model =" form.password"
80
- class = " w-full "
80
+ fluid
81
81
:invalid =" Boolean(form.errors.password)"
82
82
required
83
83
autocomplete =" new-password"
@@ -98,7 +98,7 @@ onMounted(() => {
98
98
id =" password_confirmation"
99
99
type =" password"
100
100
v-model =" form.password_confirmation"
101
- class = " w-full "
101
+ fluid
102
102
:invalid =" Boolean(form.errors.password_confirmation)"
103
103
required
104
104
autocomplete =" new-password"
@@ -116,7 +116,7 @@ onMounted(() => {
116
116
<div class =" flex justify-end items-center pt-2" >
117
117
<Link
118
118
: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"
120
120
>
121
121
Already registered?
122
122
</Link >
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ onMounted(() => {
46
46
id =" email"
47
47
type =" email"
48
48
v-model =" form.email"
49
- class = " w-full "
49
+ fluid
50
50
:invalid =" Boolean(form.errors.email)"
51
51
required
52
52
autocomplete =" username"
@@ -67,7 +67,7 @@ onMounted(() => {
67
67
id =" password"
68
68
type =" password"
69
69
v-model =" form.password"
70
- class = " w-full "
70
+ fluid
71
71
:invalid =" Boolean(form.errors.password)"
72
72
required
73
73
autocomplete =" new-password"
@@ -88,7 +88,7 @@ onMounted(() => {
88
88
id =" password_confirmation"
89
89
type =" password"
90
90
v-model =" form.password_confirmation"
91
- class = " w-full "
91
+ fluid
92
92
:invalid =" Boolean(form.errors.password_confirmation)"
93
93
required
94
94
autocomplete =" new-password"
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ const verificationLinkSent = computed(
49
49
<Link
50
50
:href =" route('logout')"
51
51
method =" post"
52
- class =" text-muted-color underline text-muted-color hover:text-color"
52
+ class =" underline text-muted-color hover:text-color"
53
53
>Log Out</Link
54
54
>
55
55
</div >
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const props = defineProps({
26
26
27
27
<Container >
28
28
<div class =" py-4 md:py-8" >
29
- <div class =" space-y-6 " >
29
+ <div class =" space-y-4 md:space-y-8 " >
30
30
<Card
31
31
:pt =" {
32
32
body: {
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ function focusPasswordInput() {
51
51
type =" password"
52
52
placeholder =" Password"
53
53
v-model =" form.password"
54
- class = " w-full "
54
+ fluid
55
55
:invalid =" Boolean(form.errors.password)"
56
56
autocomplete =" current-password"
57
57
@keyup.enter =" deleteUser"
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ const updatePassword = () => {
52
52
ref= " current-password-input"
53
53
type= " password"
54
54
v- model= " form.current_password"
55
- class = " w-full "
55
+ fluid
56
56
: invalid= " Boolean(form.errors?.current_password)"
57
57
autocomplete= " current-password"
58
58
/ >
@@ -74,7 +74,7 @@ const updatePassword = () => {
74
74
ref= " new-password-input"
75
75
type= " password"
76
76
v- model= " form.password"
77
- class = " w-full "
77
+ fluid
78
78
: invalid= " Boolean(form.errors.password)"
79
79
autocomplete= " new-password"
80
80
/ >
@@ -95,7 +95,7 @@ const updatePassword = () => {
95
95
id= " password_confirmation"
96
96
type= " password"
97
97
v- model= " form.password_confirmation"
98
- class = " w-full "
98
+ fluid
99
99
: invalid= " Boolean(form.errors.password_confirmation)"
100
100
autocomplete= " new-password"
101
101
/ >
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ onMounted(() => {
53
53
id =" name"
54
54
type =" text"
55
55
v-model =" form.name"
56
- class = " w-full "
56
+ fluid
57
57
:invalid =" Boolean(form.errors.name)"
58
58
autocomplete =" name"
59
59
/>
@@ -73,7 +73,7 @@ onMounted(() => {
73
73
id =" email"
74
74
type =" email"
75
75
v-model =" form.email"
76
- class = " w-full "
76
+ fluid
77
77
:invalid =" Boolean(form.errors.email)"
78
78
autocomplete =" username"
79
79
/>
@@ -93,7 +93,7 @@ onMounted(() => {
93
93
<Link
94
94
:href =" route('verification.send')"
95
95
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"
97
97
>
98
98
Click here to re-send the verification email.
99
99
</Link >
You can’t perform that action at this time.
0 commit comments