diff --git a/src/components/Card/index.jsx b/src/components/Card/index.jsx
index 8e27d668f1faf84ab0e2f0960b6cb2b280937c91..47bd75fe68f73210808690284dca728c292b1cf2 100644
--- a/src/components/Card/index.jsx
+++ b/src/components/Card/index.jsx
@@ -5,7 +5,7 @@ import styles from "./Card.module.scss";
 function Card(props) {
   const {customClass, children } = props;
   return (
-    <div className={cs(customClass, styles.card)} title="Copy to Clipboard">
+    <div className={cs(styles.card, customClass )} title="Copy to Clipboard">
       {children}
     </div>
   );