This commit is contained in:
Kenneth Jannette
2024-01-31 15:21:50 -06:00
parent c3e0ae5a14
commit 3ecd07fff8
2 changed files with 15 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
import { useState } from "react";
import "../../styles/casetype-page.scss";
const CaseTypePage = () => {
const [email, setEmail] = useState("");
@@ -7,7 +8,7 @@ const CaseTypePage = () => {
const [leadAttorney, setLeadAttorney] = useState("");
return (
<>
<div className="type-container">
<div className="type-row">
<div className="type-col">
<input
@@ -52,7 +53,7 @@ const CaseTypePage = () => {
></input>
</div>
</div>
</>
</div>
);
};

View File

@@ -1,7 +1,18 @@
.type-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-left: auto;
margin-right: auto;
width: 900px;
}
.type-row {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
margin-left: auto;
margin-right: auto;
}
@@ -9,6 +20,7 @@
.type-col {
display: flex;
flex-direction: column;
width: 50%;
}
.case-tag-container {