Card Component
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
- src/components/Card/index.jsx 0 → 100644
1 import PropTypes from "prop-types"; 2 import cs from "classnames"; 3 import styles from "./Card.module.scss"; 4 5 function Card(props) { 6 const {customClass, children } = props; 7 return ( 8 <div className={cs(customClass, styles.card)} title="Copy to Clipboard"> changed this line in version 3 of the diff
- src/components/Card/index.jsx 0 → 100644
1 import PropTypes from "prop-types"; 2 import cs from "classnames"; 3 import styles from "./Card.module.scss"; 4 5 function Card(props) { 6 const {customClass, children } = props; 7 return ( 8 <div className={cs(styles.card, customClass )} title="Copy to Clipboard"> changed this line in version 4 of the diff
- src/components/Card/Card.module.scss 0 → 100644
1 .card { 2 display: flex; 3 background-color: #f8f9fa; 4 flex-direction: row; 5 justify-content: center; 6 width: 200px; 7 position: relative; 8 height: 8vh; 9 border: none; 10 padding: 10px 10px; 11 margin: 20px; 12 } 13 14 .card:hover { 15 border: 1px solid grey; changed this line in version 6 of the diff
added 6 commits
-
2b464018...bebb43f7 - 5 commits from branch
devika.b:minion
- bf68d851 - title removed
-
2b464018...bebb43f7 - 5 commits from branch
mentioned in commit 6fc4924a
- A deleted user
merged
Please register or sign in to reply