skip to Main Content

Reactjs – Material-ui SpeedDialAction OnClick function is not working properly

I put file Input trigger on material-ui SpeedDialAction but its not working const hiddenAddReceipt = useRef<HTMLInputElement>(null); const hiddenAddPhoto = useRef<HTMLInputElement>(null); return ( <> <SpeedDial ariaLabel="SpeedDial basic example" sx={{ position: "absolute", color: "#fb8278", zIndex: 1 }} className={styles.addIcon} icon={<NoteAddOutlinedIcon />} direction={"right"} open={speedDialOpen}…

VIEW QUESTION

Css – Scrollbar style is not working after the new Chrome update?

I have the following code that stopped working after the new Chrome update. How can I achieve cross-browser scrollbar styling? // Note: Shared Scrollbar Style const scrollbarSharedStyle = { scrollbarColor: `${themeLayers.scrollBar[0]} ${themeLayers.scrollBar[1]}`, '&::-webkit-scrollbar, & *::-webkit-scrollbar': { backgroundColor: `${themeLayers.scrollBar[1]}`, width: 12,…

VIEW QUESTION
Back To Top
Search