Fix download button & improvements

This commit is contained in:
pheralb
2022-03-04 13:34:58 +00:00
parent ac2a81563b
commit b67dcc0be9
9 changed files with 80 additions and 59 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from "react";
import { motion } from "framer-motion";
const Tap = ({ children }) => {
return (
<motion.div whileTap={{ scale: 0.99 }}>
{children}
</motion.div>
);
};
export default Tap;