Increase the size and boldness of the timer
This commit is contained in:
@@ -58,7 +58,7 @@ const Timer: React.FC<Props> = ({minTimer, disableTimer, standalone = false}) =>
|
|||||||
animate={{scale: warningMode && !disableTimer ? 1.1 : 1}}
|
animate={{scale: warningMode && !disableTimer ? 1.1 : 1}}
|
||||||
transition={{repeat: Infinity, repeatType: "reverse", duration: 0.5, ease: "easeInOut"}}>
|
transition={{repeat: Infinity, repeatType: "reverse", duration: 0.5, ease: "easeInOut"}}>
|
||||||
<BsStopwatch className="w-6 h-6" />
|
<BsStopwatch className="w-6 h-6" />
|
||||||
<span className="text-base font-semibold w-12">
|
<span className="text-lg font-bold w-12">
|
||||||
{timer > 0 && (
|
{timer > 0 && (
|
||||||
<>
|
<>
|
||||||
{Math.floor(timer / 60)
|
{Math.floor(timer / 60)
|
||||||
@@ -75,6 +75,6 @@ const Timer: React.FC<Props> = ({minTimer, disableTimer, standalone = false}) =>
|
|||||||
</motion.div>
|
</motion.div>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
export default Timer;
|
export default Timer;
|
||||||
|
|||||||
@@ -437,7 +437,6 @@ export default function MasterCorporateDashboard({ user }: Props) {
|
|||||||
|
|
||||||
const { data: stats } = useFilterRecordsByUser<Stat[]>();
|
const { data: stats } = useFilterRecordsByUser<Stat[]>();
|
||||||
const { users, reload } = useUsers();
|
const { users, reload } = useUsers();
|
||||||
const { codes } = useCodes(user.id);
|
|
||||||
const { groups } = useGroups({ admin: user.id, userType: user.type });
|
const { groups } = useGroups({ admin: user.id, userType: user.type });
|
||||||
const { balance } = useUserBalance();
|
const { balance } = useUserBalance();
|
||||||
|
|
||||||
@@ -447,9 +446,9 @@ export default function MasterCorporateDashboard({ user }: Props) {
|
|||||||
),
|
),
|
||||||
], [groups, user.id]);
|
], [groups, user.id]);
|
||||||
|
|
||||||
const corporateUserGroups = [
|
const corporateUserGroups = useMemo(() => [
|
||||||
...new Set(groups.flatMap((g) => g.participants)),
|
...new Set(groups.flatMap((g) => g.participants)),
|
||||||
];
|
], [groups])
|
||||||
|
|
||||||
const {
|
const {
|
||||||
assignments,
|
assignments,
|
||||||
|
|||||||
Reference in New Issue
Block a user