Skip to content

Commit

Permalink
Fix prettier issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SyniRon committed Oct 1, 2023
1 parent 47b0277 commit 37dd7e7
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 54 deletions.
32 changes: 15 additions & 17 deletions client/public/index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" content="noindex" />
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<title>7th Cavalry Apps</title>
</head>

<head>
<meta name="robots" content="noindex">
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<title>7th Cavalry Apps</title>
</head>

<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>

</html>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
2 changes: 1 addition & 1 deletion client/src/pages/Activedutyroster.css
Original file line number Diff line number Diff line change
Expand Up @@ -239,4 +239,4 @@ a:hover {

/* No idea why i have to do this stupidity. For some reason if I dont do this, this shit becomes off centered */
transform-origin: 67% 67%;
}
}
66 changes: 31 additions & 35 deletions client/src/pages/CavApps.css
Original file line number Diff line number Diff line change
@@ -1,49 +1,45 @@
.masterbox {
height: 100vh;
width: 100vw;
height: 100vh;
width: 100vw;
}

.logobox {
display: flex;
justify-content: center;
align-items: center;
padding-top: 10%;
padding-bottom: 5em;
animation: logoboxanim 5s infinite linear;
display: flex;
justify-content: center;
align-items: center;
padding-top: 10%;
padding-bottom: 5em;
animation: logoboxanim 5s infinite linear;
}



@keyframes logoboxanim {
50% {
transform: translateY(20px);
}
50% {
transform: translateY(20px);
}

100% {
transform: translateY(0px);
}
100% {
transform: translateY(0px);
}
}


.buttonbox {
display: flex;
justify-content: center;
align-items: center;
display: flex;
justify-content: center;
align-items: center;
}

.button {
background-color: #f9cc17;
border: none;
color: black;
text-align: center;
display: inline-block;
font-family: "Roboto", "Segoe UI", "Times New Roman";
font-weight: bold;
font-size: 12px;
cursor: pointer;
border-radius: 0.5em;
padding: 1em;
margin-right: 0.25em;
margin-left: 0.25em;

}
background-color: #f9cc17;
border: none;
color: black;
text-align: center;
display: inline-block;
font-family: "Roboto", "Segoe UI", "Times New Roman";
font-weight: bold;
font-size: 12px;
cursor: pointer;
border-radius: 0.5em;
padding: 1em;
margin-right: 0.25em;
margin-left: 0.25em;
}
2 changes: 1 addition & 1 deletion client/src/pages/Rosterstatistics.css
Original file line number Diff line number Diff line change
Expand Up @@ -239,4 +239,4 @@ a:hover {

/* No idea why i have to do this stupidity. For some reason if I dont do this, this shit becomes off centered */
transform-origin: 67% 67%;
}
}

0 comments on commit 37dd7e7

Please sign in to comment.