Changeset c68150f for reactapp/src/Components/Styled
- Timestamp:
- 10/27/22 17:35:03 (2 years ago)
- Branches:
- main
- Children:
- 3b6962d
- Parents:
- 8d83180
- Location:
- reactapp/src/Components/Styled
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
reactapp/src/Components/Styled/EntityList.style.js
r8d83180 rc68150f 18 18 export const EntityParam = styled.p` 19 19 position: absolute; 20 right: 30px;20 right: ${(props) => props.right}; 21 21 top: 10px; 22 22 font-style: italic; -
reactapp/src/Components/Styled/Modal.style.js
r8d83180 rc68150f 18 18 float: right; 19 19 font-weight: bold; 20 box-shadow: 2px 1px 10px #aaaaaa; 20 21 `; 21 22 -
reactapp/src/Components/Styled/OpinionCard.style.js
r8d83180 rc68150f 18 18 } 19 19 position: relative; 20 overflow-wrap: break-word; 20 21 `; 21 22 … … 55 56 display: block; 56 57 position: absolute; 58 height: 20px; 57 59 top: 50%; 58 60 transform: translateY(-50%); … … 60 62 transition: 0.5s; 61 63 &:hover { 62 color: ${(props) => props.color};64 opacity: 0.5; 63 65 cursor: pointer; 64 66 }
Note:
See TracChangeset
for help on using the changeset viewer.