@@ -36,14 +36,14 @@ export const Editor = ({ room }: EditorProps) => {
3636 return (
3737 < div className = 'flex flex-col gap-4 p-4' >
3838 { 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 ' >
4040 < div className = 'flex h-10 flex-row gap-4' >
4141 < Skeleton className = 'h-10 w-16' />
4242 < Skeleton className = 'h-10 w-32' />
4343 </ div >
4444 < div className = 'flex flex-row items-center gap-2' >
4545 < Skeleton className = 'size-10 rounded-full' />
46- < Skeleton className = 'h-8 w-24' />
46+ < Skeleton className = 'h-8 w-24 rounded-sm ' />
4747 </ div >
4848 </ div >
4949 ) : (
@@ -52,10 +52,10 @@ export const Editor = ({ room }: EditorProps) => {
5252 < div className = 'flex flex-col gap-2' >
5353 < Label > Language</ Label >
5454 < 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]' >
5656 < SelectValue />
5757 </ SelectTrigger >
58- < SelectContent >
58+ < SelectContent className = 'border-secondary-foreground/30' >
5959 { languages . map ( ( lang , idx ) => (
6060 < SelectItem value = { lang } key = { idx } >
6161 { lang }
@@ -67,10 +67,10 @@ export const Editor = ({ room }: EditorProps) => {
6767 < div className = 'flex flex-col gap-2' >
6868 < Label > Theme</ Label >
6969 < 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]' >
7171 < SelectValue />
7272 </ SelectTrigger >
73- < SelectContent >
73+ < SelectContent className = 'border-secondary-foreground/30' >
7474 { themeOptions . map ( ( theme , idx ) => (
7575 < SelectItem value = { theme } key = { idx } >
7676 { theme }
@@ -85,7 +85,7 @@ export const Editor = ({ room }: EditorProps) => {
8585 { /* TODO: Get user avatar and display */ }
8686 { members . map ( ( member , index ) => (
8787 < 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'
8989 style = { {
9090 borderColor : member . color ,
9191 } }
0 commit comments