Changeset 6221ab6 for reactapp/src/Components/Styled
- Timestamp:
- 08/20/22 21:12:04 (2 years ago)
- Branches:
- main
- Children:
- 2fcbde4
- Parents:
- 702ca77
- Location:
- reactapp/src/Components/Styled
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
reactapp/src/Components/Styled/Modal.style.js
r702ca77 r6221ab6 27 27 top: 0; 28 28 width: 100%; 29 height: 100%;29 height: auto; 30 30 overflow: auto; 31 31 background-color: rgb(0, 0, 0); … … 47 47 background-color: #fefefe; 48 48 margin: 15% auto; 49 padding: 0;49 padding: 20px; 50 50 border: 1px solid #888; 51 51 width: 80%; … … 72 72 color: white; 73 73 height: 40px; 74 margin-bottom: 10px;74 margin-bottom: 30px; 75 75 `; 76 76 77 export const ModalFooter = styled. div`77 export const ModalFooter = styled.button` 78 78 padding: 2px 16px; 79 79 background-color: rgba(0, 102, 204, 1); … … 81 81 color: white; 82 82 height: 40px; 83 margin-top: 10px;83 margin-top: 30px; 84 84 transition: 0.4s; 85 85 &:hover { … … 87 87 cursor: pointer; 88 88 } 89 font-family: "Roboto Mono", monospace; 90 width: 100%; 91 border: 0; 92 font-size: 18px; 93 font-weight: bold; 89 94 `; 90 95 … … 109 114 padding: 12px 16px; 110 115 border: 1px solid #ccc; 116 resize: none; 111 117 `; -
reactapp/src/Components/Styled/OpinionCard.style.js
r702ca77 r6221ab6 61 61 &:hover { 62 62 color: ${(props) => props.color}; 63 cursor: pointer; 63 64 } 64 65 `;
Note:
See TracChangeset
for help on using the changeset viewer.