This commit is contained in:
archer
2023-06-15 22:36:09 +08:00
parent 80578a08c8
commit 33ffd9d7dd
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ const Loading = ({ fixed = true }: { fixed?: boolean }) => {
alignItems={'center'}
justifyContent={'center'}
>
<Spinner thickness="4px" speed="0.65s" emptyColor="gray.200" color="myBlue.500" size="xl" />
<Spinner thickness="4px" speed="0.65s" emptyColor="myGray.100" color="myBlue.600" size="xl" />
</Flex>
);
};

View File

@@ -87,7 +87,7 @@ const modelList = () => {
<Pagination />
</Flex>
<Loading loading={isLoading} fixed={false} />
<Loading loading={isLoading} />
</Box>
);
};