File tree 1 file changed +4
-4
lines changed
web/src/modules/song/components/client
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export const Area = ({
20
20
{ isLoading ? (
21
21
< Skeleton height = '20rem' />
22
22
) : (
23
- < div className = 'flex justify-center w-full rounded-lg border-2 border-zinc-500 p-8 mb-4' >
23
+ < div className = 'flex justify-center w-full rounded-lg outline-none border-2 border-zinc-500 p-8 mb-4' >
24
24
{ children }
25
25
</ div >
26
26
) }
@@ -43,7 +43,7 @@ export const Input = forwardRef<
43
43
< >
44
44
{ label && < label htmlFor = { id } > { label } </ label > }
45
45
{ isLoading ? (
46
- < Skeleton height = { '3rem' } />
46
+ < Skeleton height = '3rem' containerClassName = 'block leading-none' />
47
47
) : (
48
48
< input
49
49
type = 'text'
@@ -75,7 +75,7 @@ export const TextArea = forwardRef<
75
75
< >
76
76
{ label && < label htmlFor = { id } > { label } </ label > }
77
77
{ isLoading ? (
78
- < Skeleton height = { '15rem' } />
78
+ < Skeleton height = '12rem' containerClassName = 'block leading-none' />
79
79
) : (
80
80
< textarea
81
81
id = { id }
@@ -107,7 +107,7 @@ export const Select = forwardRef<
107
107
< >
108
108
{ label && < label htmlFor = { id } > { label } </ label > }
109
109
{ isLoading ? (
110
- < Skeleton height = { '3rem' } />
110
+ < Skeleton height = '3rem' containerClassName = 'block leading-none' />
111
111
) : (
112
112
< select
113
113
ref = { ref }
You can’t perform that action at this time.
0 commit comments