-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from Tamir198/change-footer-colors
style: Change footer colors
- Loading branch information
Showing
5 changed files
with
44 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,31 @@ | ||
import React from 'react'; | ||
const FacebookIconLink = () => ( | ||
<a | ||
href="https://www.facebook.com/" | ||
target="_blank" | ||
aria-label="תבקרו אותנו בפייסבוק" | ||
> | ||
<svg | ||
width="52" | ||
height="52" | ||
viewBox="0 0 52 52" | ||
xmlns="http://www.w3.org/2000/svg" | ||
className="text-transparent transition duration-300 cursor-pointer fill-current hover:text-blue-700" | ||
|
||
const FacebookIconLink = () => { | ||
return ( | ||
<a | ||
href="https://www.facebook.com/" | ||
target="_blank" | ||
aria-label="תבקרו אותנו בפייסבוק" | ||
> | ||
<g id="Facebook-Icon"> | ||
<path | ||
id="Vector" | ||
d="M33.6667 13H29.6667C27.8986 13 26.2029 13.7024 24.9526 14.9526C23.7024 16.2029 23 17.8986 23 19.6667V23.6667H19V29H23V39.6667H28.3333V29H32.3333L33.6667 23.6667H28.3333V19.6667C28.3333 19.313 28.4738 18.9739 28.7239 18.7239C28.9739 18.4738 29.313 18.3333 29.6667 18.3333H33.6667V13Z" | ||
stroke="#94A3B7" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</g> | ||
</svg> | ||
</a> | ||
); | ||
<svg | ||
width="52" | ||
height="52" | ||
viewBox="0 0 52 52" | ||
xmlns="http://www.w3.org/2000/svg" | ||
className={`text-transparent transition duration-300 cursor-pointer fill-current hover:text-blue-700 stroke-[#020616] dark:stroke-[#dddfe7]`} | ||
> | ||
<g id="Facebook-Icon"> | ||
<path | ||
id="Vector" | ||
d="M33.6667 13H29.6667C27.8986 13 26.2029 13.7024 24.9526 14.9526C23.7024 16.2029 23 17.8986 23 19.6667V23.6667H19V29H23V39.6667H28.3333V29H32.3333L33.6667 23.6667H28.3333V19.6667C28.3333 19.313 28.4738 18.9739 28.7239 18.7239C28.9739 18.4738 29.313 18.3333 29.6667 18.3333H33.6667V13Z" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</g> | ||
</svg> | ||
</a> | ||
); | ||
}; | ||
|
||
export default FacebookIconLink; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters