@@ -35,13 +35,13 @@ export const ConfigureAnalysis: React.FC<Props> = ({
35
35
autoSave,
36
36
} : Props ) => {
37
37
return (
38
- < div className = "flex w-full flex-col items-start justify-start gap-2 rounded-md p-3 text-white/90" >
38
+ < div className = "flex w-full flex-col items-start justify-start gap-1.5 rounded-md p-3 text-white/90" >
39
39
< div className = "flex w-full flex-col gap-0.5" >
40
40
< p className = "text-xs text-white/70" > Analyze using:</ p >
41
41
< div className = "relative inline-flex w-full items-center" >
42
42
< select
43
43
value = { currentMaiaModel }
44
- className = "border-glassBorder bg-glass hover:bg-glass-hover w-full cursor-pointer appearance-none rounded-md border p-1 pr-6 text-xs text-white/90 outline-none transition duration-200"
44
+ className = "w-full cursor-pointer appearance-none rounded border border-glassBorder bg-glass py-[5px] pl-2.5 pr-6 text-xs text-white/90 outline-none transition duration-200 hover:bg-glass-hover "
45
45
onChange = { ( e ) => setCurrentMaiaModel ( e . target . value ) }
46
46
>
47
47
{ MAIA_MODELS . map ( ( model ) => (
@@ -61,13 +61,13 @@ export const ConfigureAnalysis: React.FC<Props> = ({
61
61
</ div >
62
62
< ContinueAgainstMaia
63
63
launchContinue = { launchContinue }
64
- background = "!rounded-md border border-glassBorder bg-glass text-white/90 hover:bg-glass-hover !px-2 !py-1 !text-xs"
64
+ background = "!rounded border border-glassBorder bg-glass text-white/90 hover:bg-glass-hover !px-2.5 !py-[5px] !text-xs"
65
65
/>
66
66
{ onAnalyzeEntireGame && (
67
67
< button
68
68
onClick = { onAnalyzeEntireGame }
69
69
disabled = { isAnalysisInProgress || isLearnFromMistakesActive }
70
- className = "border-glassBorder bg-glass hover:bg-glass-hover flex w-full items-center gap-1.5 rounded-md border !px-2 !py-1 !text-sm text-white/90 transition duration-200 disabled:cursor-not-allowed disabled:opacity-50"
70
+ className = "flex w-full items-center gap-1.5 rounded border border-glassBorder bg-glass !px-2.5 !py-[5px] !text-sm text-white/90 transition duration-200 hover:bg-glass-hover disabled:cursor-not-allowed disabled:opacity-50"
71
71
>
72
72
< div className = "flex items-center justify-center gap-1.5" >
73
73
< span className = "material-symbols-outlined !text-sm text-white/80" >
@@ -85,7 +85,7 @@ export const ConfigureAnalysis: React.FC<Props> = ({
85
85
< button
86
86
onClick = { onLearnFromMistakes }
87
87
disabled = { isAnalysisInProgress || isLearnFromMistakesActive }
88
- className = "border-glassBorder bg-glass hover:bg-glass-hover flex w-full items-center gap-1.5 rounded-md border !px-2 !py-1 !text-sm text-white/90 transition duration-200 disabled:cursor-not-allowed disabled:opacity-50"
88
+ className = "flex w-full items-center gap-1.5 rounded border border-glassBorder bg-glass !px-2.5 !py-[5px] !text-sm text-white/90 transition duration-200 hover:bg-glass-hover disabled:cursor-not-allowed disabled:opacity-50"
89
89
>
90
90
< div className = "flex items-center justify-center gap-1.5" >
91
91
< span className = "material-symbols-outlined !text-sm text-white/80" >
0 commit comments