@@ -35,13 +35,13 @@ export const ConfigureAnalysis: React.FC<Props> = ({
3535 autoSave,
3636} : Props ) => {
3737 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" >
3939 < div className = "flex w-full flex-col gap-0.5" >
4040 < p className = "text-xs text-white/70" > Analyze using:</ p >
4141 < div className = "relative inline-flex w-full items-center" >
4242 < select
4343 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 "
4545 onChange = { ( e ) => setCurrentMaiaModel ( e . target . value ) }
4646 >
4747 { MAIA_MODELS . map ( ( model ) => (
@@ -61,13 +61,13 @@ export const ConfigureAnalysis: React.FC<Props> = ({
6161 </ div >
6262 < ContinueAgainstMaia
6363 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"
6565 />
6666 { onAnalyzeEntireGame && (
6767 < button
6868 onClick = { onAnalyzeEntireGame }
6969 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"
7171 >
7272 < div className = "flex items-center justify-center gap-1.5" >
7373 < span className = "material-symbols-outlined !text-sm text-white/80" >
@@ -85,7 +85,7 @@ export const ConfigureAnalysis: React.FC<Props> = ({
8585 < button
8686 onClick = { onLearnFromMistakes }
8787 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"
8989 >
9090 < div className = "flex items-center justify-center gap-1.5" >
9191 < span className = "material-symbols-outlined !text-sm text-white/80" >
0 commit comments