This commit is contained in:
Kenneth Jannette
2024-01-31 13:53:23 -06:00
parent b39aa4843d
commit fc4e188355
2 changed files with 37 additions and 2 deletions

View File

@@ -41,6 +41,7 @@ const CaseTypePage = ({ caseData }) => {
const [isBusy, setIsBusy] = useState(false);
const parsedTags = dJSON.parse(JSON.stringify(caseTags));
const handleNavigate = () => {
navigate("/documents");
};
@@ -111,7 +112,7 @@ const CaseTypePage = ({ caseData }) => {
return (
<div className="casetype-container">
<Form className="casetype-form">
<Form style={{ width: "100%" }}>
<Row>
<Col className="mb-3">
{isEditing ? (

View File

@@ -1,14 +1,48 @@
.casetype-container {
width: 920px;
display: flex;
flex-direction: column;
margin-left: auto;
margin-right: auto;
align-items: center;
}
.casetype-form {
width: 100%;
}
.case-tag-container {
display: flex;
background-color: red;
border: 1px solid red;
height: 300px;
}
.tag-container {
display: flex;
flex-direction: row;
height: 50px;
}
.tag-box {
background-color: rgba(224, 224, 224, 0.421);
display: flex;
flex-direction: row;
border-radius: 8px;
margin: 6px 4px;
padding: 6px;
}
.tag-ex-box {
display: flex;
}
.tag-ex {
margin-top: -7px;
font-weight: 500;
font-size: 0.88rem;
}
.casetag-name {
font-size: 0.94rem;
padding: 0px 6px;
}