This commit is contained in:
Kenneth Jannette
2025-03-08 18:57:44 -05:00
parent 0f606b6c74
commit a6f142c365
4 changed files with 13 additions and 11 deletions

View File

@@ -52,7 +52,7 @@ const Vehicle = (props) => {
{`$${formatNums(price / 100)}.00`}
</p>
<p className="veh-text">
<b>Id: </b>
<b>ISDM: </b>
{id}
</p>
</div>

View File

@@ -149,7 +149,7 @@ const Vehicles = () => {
/>
<div>
{savedVehicles.length > 0 ? (
<h2 className="formHeader"> Your Saved Vehicles</h2>
<h2 className="formHeader"> Your Vehicles</h2>
) : (
<></>
)}

View File

@@ -1,13 +1,13 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}

View File

@@ -1,6 +1,11 @@
@import url("https://fonts.googleapis.com/css?family=Open+Sans");
html {
height: 100%;
}
body {
margin: 0;
font-family: "Open Sans", sans-serif;
}
@@ -16,7 +21,7 @@ body {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
padding: 0px 30px;
margin: 5px 20px;
}
@@ -66,10 +71,6 @@ body {
margin: 4px 5px;
}
.formHeader {
letter-spacing: 0.08rem;
}
.formHeader2 {
letter-spacing: 0.08rem;
margin-top: 10px;
@@ -158,7 +159,6 @@ body {
}
.navBarContainer {
width: 100%;
height: 50px;
padding: 15px 20px 0px 20px;
border-bottom: 2px solid #a9a9a9;
@@ -197,6 +197,8 @@ body {
@media only screen and (max-width: 460px) {
.vehicles-container {
max-width: 400px;
padding: 0px 10px;
margin: 2px auto;
}