Improved on responsivness for the header

This commit was merged in pull request #5.
This commit is contained in:
Ebube
2024-03-06 13:10:22 +01:00
parent af0faf1741
commit 23bcc46f3e
6 changed files with 86 additions and 41 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ type ButtonProps = {
};
const Button = ({ text, className }: ButtonProps) => {
return <button className={`btn-primary uppercase text-[13px] ${className}`}>{text}</button>;
return <button className={`btn-primary uppercase text-[11px] lg:text-[13px] p-[6px] lg:px-[10px] ${className}`}>{text}</button>;
};
export default Button;