- Timestamp:
- 07/31/22 01:04:27 (2 years ago)
- Branches:
- main
- Children:
- a6dcc46
- Parents:
- f5d4792
- Location:
- reactapp/src/Components
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
reactapp/src/Components/OpinionCard.style.js
rf5d4792 rad40ec0 57 57 top: 50%; 58 58 transform: translateY(-50%); 59 right: ${(props) => props.indent}; 59 right: ${(props) => props.right}; 60 transition: 0.5s; 61 &:hover { 62 color: ${(props) => props.color}; 63 } 60 64 `; -
reactapp/src/Components/OpinionTree.js
rf5d4792 rad40ec0 41 41 icon={solid("thumbs-up")} 42 42 right={50 + "px"} 43 color="greenyellow" 43 44 /> 44 45 <StyledFontAwesomeIcon 45 46 icon={solid("thumbs-down")} 46 47 right={10 + "px"} 48 color="indianred" 47 49 /> 48 <StyledFontAwesomeIcon icon={solid("reply")} right={90 + "px"} /> 50 <StyledFontAwesomeIcon 51 icon={solid("reply")} 52 right={90 + "px"} 53 color="black" 54 /> 49 55 </OpinionReplyCardContent> 50 56 {child.children.map((childOfChild) => … … 84 90 icon={solid("thumbs-up")} 85 91 right={50 + "px"} 92 color="greenyellow" 86 93 /> 87 94 <StyledFontAwesomeIcon 88 95 icon={solid("thumbs-down")} 89 96 right={10 + "px"} 97 color="indianred" 90 98 /> 91 99 <StyledFontAwesomeIcon 92 100 icon={solid("reply")} 93 101 right={90 + "px"} 102 color="black" 94 103 /> 95 104 </OpinionCardContent> -
reactapp/src/Components/ProfessorCard.style.js
rf5d4792 rad40ec0 3 3 export const ProfessorCard = styled.div` 4 4 background-color: papayawhip; 5 width: fit-content;5 width: auto; 6 6 padding: 10px; 7 7 margin-bottom: 30px;
Note:
See TracChangeset
for help on using the changeset viewer.