Skip to content
Snippets Groups Projects
Unverified Commit bf0dafab authored by GyDi's avatar GyDi
Browse files

fix: icon style

parent 60f65871
No related branches found
No related tags found
No related merge requests found
...@@ -68,7 +68,11 @@ const ConfigViewer = () => { ...@@ -68,7 +68,11 @@ const ConfigViewer = () => {
</DialogActions> </DialogActions>
</Dialog> </Dialog>
<InfoRounded fontSize="small" onClick={() => setOpen(true)} /> <InfoRounded
fontSize="small"
style={{ cursor: "pointer", opacity: 0.75 }}
onClick={() => setOpen(true)}
/>
</> </>
); );
}; };
......
...@@ -41,7 +41,7 @@ const CoreSwitch = () => { ...@@ -41,7 +41,7 @@ const CoreSwitch = () => {
<> <>
<Settings <Settings
fontSize="small" fontSize="small"
style={{ cursor: "pointer" }} style={{ cursor: "pointer", opacity: 0.75 }}
onClick={(event) => { onClick={(event) => {
const { clientX, clientY } = event; const { clientX, clientY } = event;
setPosition({ top: clientY, left: clientX }); setPosition({ top: clientY, left: clientX });
......
...@@ -90,6 +90,7 @@ const SettingSystem = ({ onError }: Props) => { ...@@ -90,6 +90,7 @@ const SettingSystem = ({ onError }: Props) => {
serviceStatus === "installed") && ( serviceStatus === "installed") && (
<PrivacyTipRounded <PrivacyTipRounded
fontSize="small" fontSize="small"
style={{ cursor: "pointer", opacity: 0.75 }}
onClick={() => setServiceOpen(true)} onClick={() => setServiceOpen(true)}
/> />
)} )}
......
...@@ -43,7 +43,11 @@ const SysproxyTooltip = () => { ...@@ -43,7 +43,11 @@ const SysproxyTooltip = () => {
title={showTitle} title={showTitle}
arrow arrow
> >
<InfoRounded fontSize="small" onClick={onShow} /> <InfoRounded
fontSize="small"
style={{ cursor: "pointer", opacity: 0.75 }}
onClick={onShow}
/>
</Tooltip> </Tooltip>
</ClickAwayListener> </ClickAwayListener>
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment