This commit is contained in:
Kenneth Jannette
2025-03-08 18:37:32 -05:00
parent 411bf92645
commit 0f606b6c74
5 changed files with 17 additions and 37 deletions

View File

@@ -1,25 +0,0 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}

View File

@@ -1,3 +0,0 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:

View File

@@ -1,5 +1,5 @@
{ {
"name": "sales control application", "name": "sales flow application",
"version": "0.1.0", "version": "0.1.0",
"homepage": ".", "homepage": ".",
"private": false, "private": false,

View File

@@ -20,12 +20,12 @@ const Vehicles = () => {
const inputTypes = [ const inputTypes = [
"Make", "Make",
"Model", "Model",
"Trim", "Trim Package",
"Color", "Color",
"Year", "Prod Year",
"Category", "Category",
"Mileage", "Mileage",
"Price", "Pre-QR Price",
]; ];
const handleIdInput = (e) => setVehId(e.target.value); const handleIdInput = (e) => setVehId(e.target.value);
@@ -117,7 +117,7 @@ const Vehicles = () => {
return ( return (
<> <>
<div className="vehicles-container"> <div className="vehicles-container">
<h2 className="formHeader">Add A Vehicle to Your Queue</h2> <h2 className="formHeader">Add Vehicle to Queue</h2>
<div className="vehiclesRow"> <div className="vehiclesRow">
<div className="vehBox"> <div className="vehBox">
<div className="vehiclesColumn"> <div className="vehiclesColumn">
@@ -170,14 +170,14 @@ const Vehicles = () => {
))} ))}
</div> </div>
<div className="getHeader"> <div className="getHeader">
<h2 className="formHeader2">Get A Vehicle By Id</h2> <h2 className="formHeader2">Get Vehicle By ISDM</h2>
</div> </div>
<div className="fetchBox"> <div className="fetchBox">
<div className="inputContainer"> <div className="inputContainer">
<TextInput <TextInput
className="text-input" className="text-input"
name="vehId" name="vehId"
placeholder="Vehicle Id" placeholder="Vehicle ISDM"
value={vehId} value={vehId}
onChange={handleIdInput} onChange={handleIdInput}
/> />

View File

@@ -59,6 +59,7 @@ body {
border-radius: 6px; border-radius: 6px;
max-width: 535px; max-width: 535px;
flex: 1 0 auto; flex: 1 0 auto;
background-color: #fcf6ff;
} }
.veh-text { .veh-text {
@@ -94,6 +95,7 @@ body {
cursor: pointer; cursor: pointer;
padding: 7px 0px 26px 0px; padding: 7px 0px 26px 0px;
margin: 25px auto; margin: 25px auto;
background-color: #fffef9;
} }
.auxButton2 { .auxButton2 {
@@ -101,7 +103,7 @@ body {
width: 125px; width: 125px;
border: 1px solid #c0c8cf; border: 1px solid #c0c8cf;
border-radius: 6px; border-radius: 6px;
background-color: white; background-color: #fffef9;
color: #0f1111; color: #0f1111;
font-family: "Open Sans", sans-serif; font-family: "Open Sans", sans-serif;
cursor: pointer; cursor: pointer;
@@ -159,8 +161,8 @@ body {
width: 100%; width: 100%;
height: 50px; height: 50px;
padding: 15px 20px 0px 20px; padding: 15px 20px 0px 20px;
background-color: white;
border-bottom: 2px solid #a9a9a9; border-bottom: 2px solid #a9a9a9;
background-color: #fcf6ff;
} }
.navRow { .navRow {
@@ -194,15 +196,21 @@ body {
} }
@media only screen and (max-width: 460px) { @media only screen and (max-width: 460px) {
.vehicles-container {
margin: 2px auto;
}
.vehiclesColumn { .vehiclesColumn {
height: 100%; height: 100%;
} }
.navBarContainer { .navBarContainer {
display: none; display: none;
} }
.formHeader { .formHeader {
max-width: 250px; max-width: 250px;
text-align: center;
} }
.vehBox { .vehBox {