소스 검색

:wrench: Customize front template

DricomDragon 9 달 전
부모
커밋
ab947bcbb2
4개의 변경된 파일4개의 추가작업 그리고 43개의 파일을 삭제
  1. 1 1
      dev-front/public/index.html
  2. 2 2
      dev-front/public/manifest.json
  3. 0 28
      dev-front/src/App.css
  4. 1 12
      dev-front/src/App.tsx

+ 1 - 1
dev-front/public/index.html

@@ -24,7 +24,7 @@
       work correctly both with client-side routing and a non-root public URL.
       Learn how to configure a non-root public URL by running `npm run build`.
     -->
-    <title>React App</title>
+    <title>Squad Composer</title>
   </head>
   <body>
     <noscript>You need to enable JavaScript to run this app.</noscript>

+ 2 - 2
dev-front/public/manifest.json

@@ -1,6 +1,6 @@
 {
-  "short_name": "React App",
-  "name": "Create React App Sample",
+  "short_name": "Squad Composer",
+  "name": "Create custom squads for Into the Breach",
   "icons": [
     {
       "src": "favicon.ico",

+ 0 - 28
dev-front/src/App.css

@@ -1,18 +1,3 @@
-.App {
-  text-align: center;
-}
-
-.App-logo {
-  height: 40vmin;
-  pointer-events: none;
-}
-
-@media (prefers-reduced-motion: no-preference) {
-  .App-logo {
-    animation: App-logo-spin infinite 20s linear;
-  }
-}
-
 .App-header {
   background-color: #282c34;
   min-height: 100vh;
@@ -23,16 +8,3 @@
   font-size: calc(10px + 2vmin);
   color: white;
 }
-
-.App-link {
-  color: #61dafb;
-}
-
-@keyframes App-logo-spin {
-  from {
-    transform: rotate(0deg);
-  }
-  to {
-    transform: rotate(360deg);
-  }
-}

+ 1 - 12
dev-front/src/App.tsx

@@ -6,18 +6,7 @@ function App() {
   return (
     <div className="App">
       <header className="App-header">
-        <img src={logo} className="App-logo" alt="logo" />
-        <p>
-          Edit <code>src/App.tsx</code> and save to reload.
-        </p>
-        <a
-          className="App-link"
-          href="https://reactjs.org"
-          target="_blank"
-          rel="noopener noreferrer"
-        >
-          Learn React
-        </a>
+        <h1>Squad Composer</h1>
       </header>
     </div>
   );