Skip to content
Snippets Groups Projects

Issue #290: FIX Style of the share profile button

Merged esrsc23 requested to merge issue-290/style-of-the-share-profile-button into develop
3 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -18,12 +18,12 @@ export default function ShareButton({ type, id }) {
return (
<>
<button
className="p-2 text-sm rounded-xl max-md:my-3 bg-ice-HC-dark hover:bg-lightGray-HC-white hover:text-darkGray-HC-dark outline outline-1 outline-ice-HC-white text-darkGray-HC-white-underline font-bold normal-case flex justify-center items-center gap-2"
className="p-2 text-sm rounded-[10px] w-48 h-11 max-md:my-3 hover:bg-darkGray-HC-white hover:text-darkGray-HC-dark outline outline-1 outline-lightGray-HC-white text-darkGray-HC-white-underline hover:text-white-HC-dark-underline font-bold normal-case flex justify-center items-center gap-2"
onClick={() => setShareOpen(true)}
aria-label="Compartilhar"
>
<ShareOutlinedIcon fontSize="small" />
<span className="hidden md:inline">Compartilhar</span>
<span className="hidden md:inline">Compartilhar perfil</span>
</button>
<ShareModal
open={shareOpen}
Loading