File tree Expand file tree Collapse file tree 8 files changed +13
-11
lines changed Expand file tree Collapse file tree 8 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 1
1
@utility button {
2
- @apply cursor-pointer rounded-md bg-brand-800 px-6 py-3 text-sm font-semibold text-white inline-flex shadow-xs hover:bg-brand-600 transition-all ease-in-out duration-200 ;
2
+ @apply cursor-pointer rounded-md bg-brand-800 px-6 py-3 text-sm font-semibold text-white inline-flex shadow-xs hover:bg-brand-600 transition-colors ;
3
3
4
4
& [disabled ] {
5
5
@apply pointer-events-none opacity-50;
Original file line number Diff line number Diff line change 29
29
}
30
30
31
31
@utility field {
32
- @apply block rounded-md border-brand-300 shadow-xs outline-hidden hover:ring-3 hover:ring-brand-200/50 focus:border-brand-300 focus:ring-3 focus:ring-brand-200/50 focus:ring-offset-0 transition ease-in-out duration-200 ;
32
+ @apply block rounded-md border-brand-300 shadow-xs outline-hidden hover:ring-3 hover:ring-brand-200/50 focus:border-brand-300 focus:ring-3 focus:ring-brand-200/50 focus:ring-offset-0 transition;
33
33
}
34
34
35
35
@utility input {
Original file line number Diff line number Diff line change 1
1
@theme {
2
+ --default-transition-duration : 0.2s ;
3
+
2
4
--font-text : "Arial" , sans-serif;
3
5
--font-heading : "Arial" , sans-serif;
4
6
--font-serif : "Georgia" , sans-serif;
Original file line number Diff line number Diff line change 5
5
© ; 2024
6
6
<a
7
7
href =" https://sebkay.com/"
8
- class =" underline hover:decoration-transparent transition-colors ease-in-out duration-200 "
8
+ class =" text-link "
9
9
target =" _blank"
10
10
>Seb Kay</a
11
11
>. All rights reserved.
Original file line number Diff line number Diff line change 21
21
:method =" link?.method"
22
22
:as =" link?.method == 'post' ? 'button' : 'a'"
23
23
v-text =" link.label"
24
- class =" rounded-xl px-3 py-2 text-sm font-medium cursor-pointer transition-colors ease-in-out duration-200 "
24
+ class =" rounded-xl px-3 py-2 text-sm font-medium cursor-pointer transition-colors"
25
25
:class =" {
26
26
'bg-brand-100 text-brand-950': link.components.includes($page.component),
27
27
'text-brand-600 hover:text-brand-950 focus:text-brand-950': !link.components.includes($page.component),
Original file line number Diff line number Diff line change 34
34
>
35
35
Password
36
36
<Link
37
- class =" underline hover:decoration-transparent transition-colors ease-in-out duration-200 "
37
+ class =" text-link "
38
38
:href =" route('password')"
39
39
text =" Forgot password?"
40
40
/>
49
49
</div >
50
50
51
51
<div class =" form-col" >
52
- <label class =" inline-flex items-center gap-3 cursor-pointer " >
52
+ <label class =" toggle " >
53
53
<input
54
54
class =" sr-only peer"
55
55
type =" checkbox"
56
56
v-model =" loginForm.remember"
57
57
/>
58
58
<div
59
- class =" relative w-9 h-5 bg-neutral-200 peer-focus:outline-hidden rounded-full peer peer-checked:after:translate-x-full peer-checked:rtl:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-neutral-300 after:border after:rounded-full after:size-4 after:transition-all peer-checked:bg-brand-600 " >
59
+ class =" peer" >
60
60
</div >
61
- <span class = " text-sm font-medium " >
61
+ <span >
62
62
Remember me
63
63
</span >
64
64
</label >
79
79
<p class =" text-center mt-3" >
80
80
Don't have an account?
81
81
<Link
82
- class =" underline hover:decoration-transparent transition-colors ease-in-out duration-200 "
82
+ class =" text-link "
83
83
:href =" route('register')"
84
84
text =" Register"
85
85
/>
Original file line number Diff line number Diff line change 90
90
<p class =" text-center" >
91
91
Already have an account?
92
92
<Link
93
- class =" underline hover:decoration-transparent transition-colors ease-in-out duration-200 "
93
+ class =" text-link "
94
94
:href =" route('login')"
95
95
text =" Log In"
96
96
/>
Original file line number Diff line number Diff line change 42
42
<p class =" text-center" >
43
43
Remembered your password?
44
44
<Link
45
- class =" underline hover:decoration-transparent transition-colors ease-in-out duration-200 "
45
+ class =" text-link "
46
46
:href =" route('login')"
47
47
text =" Login"
48
48
/>
You can’t perform that action at this time.
0 commit comments