update App.js, src/components/CardTrelloDesign/index.js and src/components/ProfilePicNextToEachOther/index.js

master
Your Name 2 years ago
parent c46a8e231a
commit 180ee0ffc0
  1. 4
      src/App.js
  2. 2
      src/components/CardTrelloDesign/index.js
  3. 2
      src/components/ProfilePicNextToEachOther/index.js

@ -144,11 +144,11 @@ function App() {
{/* <OutlineInput /> */} {/* <OutlineInput /> */}
{/* <ButtonNewDesign /> */} {/* <ButtonNewDesign /> */}
{/* <CancleIcon /> */} {/* <CancleIcon /> */}
<ProfilePicNextToEachOther /> {/* <ProfilePicNextToEachOther /> */}
{/* <SemiDonut /> */} {/* <SemiDonut /> */}
{/* <FolderTree /> */} {/* <FolderTree /> */}
{/* <GridListTable /> */} {/* <GridListTable /> */}
<PopupCard /> {/* <PopupCard /> */}
{/* <TimeLine /> */} {/* <TimeLine /> */}
{/* <TimeLineComponent /> */} {/* <TimeLineComponent /> */}
{/* <SelectYear /> */} {/* <SelectYear /> */}

@ -79,7 +79,7 @@ const CardTrelloDesign = ({ circle, pictures }) => {
{/* {pictures.map((pic, index) => ( {/* {pictures.map((pic, index) => (
<img src={pic.image} alt="" className="w-10" /> <img src={pic.image} alt="" className="w-10" />
))} */} ))} */}
<ProfilePicNextToEachOther num={3} /> <ProfilePicNextToEachOther num={3} marginLeft={"5px"} />
</div> </div>
{/* left */} {/* left */}
<div className="flex flex-row items-center gap-x-1"> <div className="flex flex-row items-center gap-x-1">

@ -13,7 +13,7 @@ const ProfilePicNextToEachOther = ({ users,num,marginLeft }) => {
<img <img
key={i} key={i}
src={user.picture} src={user.picture}
className="w-10 h-10 border-2 border-white rounded-full dark:border-gray-800" className="w-10 h-10 rounded-full"
alt="profile-pic" alt="profile-pic"
style={{ marginLeft: `${marginLeft}` }} style={{ marginLeft: `${marginLeft}` }}
/> />

Loading…
Cancel
Save