Skip to content
Snippets Groups Projects

Card Component

3 unresolved threads

Merge request reports

Approval is optional

Merged by avatar (Jul 11, 2025 2:18pm UTC)

Merge details

  • Changes merged into minion with 6fc4924a.
  • Deleted the source branch.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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">
  • Pavan Kamath added 1 commit

    added 1 commit

    • 2b464018 - classname precedence changed

    Compare with previous version

  • 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">
  • 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;
  • Pavan Kamath added 6 commits

    added 6 commits

    Compare with previous version

  • Pavan Kamath added 1 commit

    added 1 commit

    Compare with previous version

  • Pavan Kamath added 1 commit

    added 1 commit

    Compare with previous version

  • Ghost User mentioned in commit 6fc4924a

    mentioned in commit 6fc4924a

  • A deleted user merged

    merged

  • Please register or sign in to reply
    Loading