some button styling

This commit is contained in:
csawatzky 2025-11-05 15:35:36 -06:00
parent 842f9bee6a
commit 6191aa0da7

View file

@ -1134,7 +1134,7 @@ export default function BinVisualizer(props: Props) {
Plenum {plenums && plenums?.length > 1 ? activePlenumIndex+1 : ""}
</Typography>
{plenums && plenums.length > 1 &&
<IconButton size="small" onClick={()=>{
<IconButton sx={{background: darken(theme.palette.background.paper, 0.1), marginLeft: 1}} size="small" onClick={()=>{
let newIndex = activePlenumIndex + 1
if(newIndex > combinedPlenums.length - 1){
newIndex = 0
@ -1142,7 +1142,7 @@ export default function BinVisualizer(props: Props) {
setActivePlenum(combinedPlenums[newIndex])
setActivePlenumIndex(newIndex)
}}>
<ArrowForwardIos />
<ArrowForwardIos sx={{ fontSize: 15}}/>
</IconButton>
}
</Box>