Skip to content

Commit

Permalink
refactor[index.css]: Refactor index.css
Browse files Browse the repository at this point in the history
  • Loading branch information
igorrCarvalho authored and anovazzi1 committed Jul 25, 2023
1 parent dda8676 commit b70ed70
Show file tree
Hide file tree
Showing 7 changed files with 1,154 additions and 1,147 deletions.
12 changes: 10 additions & 2 deletions src/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 8 additions & 9 deletions src/frontend/src/components/inputListComponent/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { useEffect } from "react";
import { InputListComponentType } from "../../types/components";

import { Input } from "../ui/input";
import { classNames } from "../../utils/utils";
import _ from "lodash";
import { classNames } from "../../utils/utils";
import IconComponent from "../genericIconComponent";
import { Input } from "../ui/input";

export default function InputListComponent({
value,
Expand All @@ -19,13 +19,12 @@ export default function InputListComponent({
}, [disabled]);

return (
<div
className={
classNames(
value.length > 1 && editNode ? "my-1" : "",
"flex flex-col gap-3"
)
}>
<div
className={classNames(
value.length > 1 && editNode ? "my-1" : "",
"flex flex-col gap-3"
)}
>
{value.map((i, idx) => {
return (
<div key={idx} className="flex w-full gap-3">
Expand Down
Loading

0 comments on commit b70ed70

Please sign in to comment.