diff --git a/src/components/card/CardProjEdit.tsx b/src/components/card/CardProjEdit.tsx new file mode 100644 index 0000000..48cc5fe --- /dev/null +++ b/src/components/card/CardProjEdit.tsx @@ -0,0 +1,16 @@ +import './card-proj-edit.css'; + +export default function CardProjEdit() { + return ( +
+ ) +} \ No newline at end of file diff --git a/src/components/card/card-proj-edit.css b/src/components/card/card-proj-edit.css new file mode 100644 index 0000000..8536c4c --- /dev/null +++ b/src/components/card/card-proj-edit.css @@ -0,0 +1,37 @@ +.card-proj-edit { + width: 224px; + padding: 10px; + border-radius: 6px; + border: 1px solid var(--color-border); +} + +.card-proj-edit .title { + font-size: 18px; + font-weight: bold; +} + +.card-proj-edit .desc { + margin: 5px 0 10px 0; + height: 36px; + line-height: 18px; +} + +.card-proj-edit .option { + display: flex; + justify-content: space-between; +} + +.card-proj-edit .option .edit { + color: var(--color-blue); +} + +.card-proj-edit .option .status { + width: 13px; + height: 6px; + border-style: solid; + border-color: var(--color-green); + border-width: 4px; + transform: rotate(-45deg); + border-top: transparent; + border-right: transparent; +} \ No newline at end of file diff --git a/src/components/step/StepProjEdit.tsx b/src/components/step/StepProjEdit.tsx new file mode 100644 index 0000000..4dc0703 --- /dev/null +++ b/src/components/step/StepProjEdit.tsx @@ -0,0 +1,16 @@ +import './step-proj-edit.css'; +import {IStepProj} from "../../interfaces/step/IStepProj.ts"; + +export default function StepProjEdit(props: IStepProj) { + return ( +