mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-07-23 04:36:52 +00:00
added sync indicator for q-apps
This commit is contained in:
@@ -20,7 +20,7 @@ import { Save } from "../Save/Save";
|
||||
import { useRecoilState } from "recoil";
|
||||
import { enabledDevModeAtom } from "../../atoms/global";
|
||||
|
||||
export const IconWrapper = ({ children, label, color, selected }) => {
|
||||
export const IconWrapper = ({ children, label, color, selected, disableWidth }) => {
|
||||
return (
|
||||
<Box
|
||||
sx={{
|
||||
@@ -29,8 +29,8 @@ export const IconWrapper = ({ children, label, color, selected }) => {
|
||||
alignItems: "center",
|
||||
gap: "5px",
|
||||
flexDirection: "column",
|
||||
height: "89px",
|
||||
width: "89px",
|
||||
height: disableWidth ? 'auto' : "89px",
|
||||
width: disableWidth ? 'auto' : "89px",
|
||||
borderRadius: "50%",
|
||||
backgroundColor: selected ? "rgba(28, 29, 32, 1)" : "transparent",
|
||||
}}
|
||||
|
Reference in New Issue
Block a user