Browse Source

fix: image size

AykutSarac 2 năm trước cách đây
mục cha
commit
fdaffa622a
1 tập tin đã thay đổi với 9 bổ sung15 xóa
  1. 9 15
      src/components/Loading/index.tsx

+ 9 - 15
src/components/Loading/index.tsx

@@ -1,5 +1,5 @@
 import React from "react";
-import { Center, Image, Stack } from "@mantine/core";
+import { Center, Image, Stack, Title } from "@mantine/core";
 import styled, { keyframes } from "styled-components";
 
 interface LoadingProps {
@@ -34,16 +34,10 @@ const StyledLoading = styled.div<{ visible: boolean }>`
   visibility: hidden;
 
   img {
-    transform: rotate(45deg) translate(125px, -50px);
+    transform: rotate(45deg) translate(100px, -70px);
   }
 `;
 
-const StyledLogo = styled.h2`
-  font-weight: 800;
-  font-size: 70px;
-  margin-bottom: 10px;
-`;
-
 const StyledText = styled.span`
   color: #faa81a;
 `;
@@ -55,15 +49,15 @@ const StyledMessage = styled.div`
 `;
 
 export const Loading: React.FC<LoadingProps> = ({ loading = true, message }) => (
-  <StyledLoading visible={loading}>
-    <Center>
+  <Center mx="auto">
+    <StyledLoading visible={true}>
       <Stack>
-        <Image mah={225} maw={225} src="./assets/rocket_ship.webp" alt="loading image" />
-        <StyledLogo>
+        <Image maw={150} src="./assets/rocket_ship.webp" alt="loading image" />
+        <Title size="4rem">
           <StyledText>JSON</StyledText> Crack
-        </StyledLogo>
+        </Title>
         <StyledMessage>{message ?? "Preparing the environment for you..."}</StyledMessage>
       </Stack>
-    </Center>
-  </StyledLoading>
+    </StyledLoading>
+  </Center>
 );