Skip to content

Commit

Permalink
ADD osiris image for IDEs
Browse files Browse the repository at this point in the history
  • Loading branch information
wabscale committed Dec 3, 2023
1 parent 2e02223 commit d8d45b3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
Binary file added web/public/OSIRIS_LOGO_MARK_COLOR.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 18 additions & 5 deletions web/src/pages/core/public/Playgrounds/Playgrounds.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,24 @@ export default function Playgrounds({imageId}) {
return (
<Box className={!isSelected ? classes.image : clsx(classes.image, classes.selectedImage)}>
<Box className={classes.imageHeader}>
<i
className={clsx(icon, isSelected ?
clsx(classes.icon, classes.opFull) :
clsx(classes.icon, classes.opLess))}
style={{fontSize: 32}}/>
{
icon === 'osiris' ? (
<Box sx={{ml: 1, mr: 1}}>
<img
src="/OSIRIS_LOGO_MARK_COLOR.png"
alt="osiris"
height={30}
style={isSelected ? null : {'-webkit-filter': 'grayscale(1)'}}
/>
</Box>
) : (
<i
className={clsx(icon, isSelected ?
clsx(classes.icon, classes.opFull) :
clsx(classes.icon, classes.opLess))}
style={{fontSize: 32}}/>
)
}
<Typography className={isSelected ? classes.opFull : classes.opLess}>{title}</Typography>
</Box>
</Box>
Expand Down

0 comments on commit d8d45b3

Please sign in to comment.