@@ -36,14 +36,14 @@ export const Editor = ({ room }: EditorProps) => {
36
36
return (
37
37
< div className = 'flex flex-col gap-4 p-4' >
38
38
{ isLoading ? (
39
- < div className = 'flex h-16 w-full flex-row justify-between pt-4 ' >
39
+ < div className = 'flex h-[60px] w-full flex-row justify-between pt-3 ' >
40
40
< div className = 'flex h-10 flex-row gap-4' >
41
41
< Skeleton className = 'h-10 w-16' />
42
42
< Skeleton className = 'h-10 w-32' />
43
43
</ div >
44
44
< div className = 'flex flex-row items-center gap-2' >
45
45
< Skeleton className = 'size-10 rounded-full' />
46
- < Skeleton className = 'h-8 w-24' />
46
+ < Skeleton className = 'h-8 w-24 rounded-sm ' />
47
47
</ div >
48
48
</ div >
49
49
) : (
@@ -52,10 +52,10 @@ export const Editor = ({ room }: EditorProps) => {
52
52
< div className = 'flex flex-col gap-2' >
53
53
< Label > Language</ Label >
54
54
< Select value = { language } onValueChange = { ( val ) => setLanguage ( val as LanguageName ) } >
55
- < SelectTrigger className = 'max-w-[150px]' >
55
+ < SelectTrigger className = 'focus-visible:ring-secondary-foreground/60 max-w-[150px]' >
56
56
< SelectValue />
57
57
</ SelectTrigger >
58
- < SelectContent >
58
+ < SelectContent className = 'border-secondary-foreground/30' >
59
59
{ languages . map ( ( lang , idx ) => (
60
60
< SelectItem value = { lang } key = { idx } >
61
61
{ lang }
@@ -67,10 +67,10 @@ export const Editor = ({ room }: EditorProps) => {
67
67
< div className = 'flex flex-col gap-2' >
68
68
< Label > Theme</ Label >
69
69
< Select value = { theme } onValueChange = { ( val ) => setTheme ( val as IEditorTheme ) } >
70
- < SelectTrigger className = 'max-w-[150px]' >
70
+ < SelectTrigger className = 'focus-visible:ring-secondary-foreground/60 max-w-[150px]' >
71
71
< SelectValue />
72
72
</ SelectTrigger >
73
- < SelectContent >
73
+ < SelectContent className = 'border-secondary-foreground/30' >
74
74
{ themeOptions . map ( ( theme , idx ) => (
75
75
< SelectItem value = { theme } key = { idx } >
76
76
{ theme }
@@ -85,7 +85,7 @@ export const Editor = ({ room }: EditorProps) => {
85
85
{ /* TODO: Get user avatar and display */ }
86
86
{ members . map ( ( member , index ) => (
87
87
< div
88
- className = 'grid size-8 place-items-center !overflow-clip rounded-full border p-1 text-xs'
88
+ className = 'grid size-8 place-items-center !overflow-clip rounded-full border-2 p-1 text-xs'
89
89
style = { {
90
90
borderColor : member . color ,
91
91
} }
0 commit comments