Skip to content

Commit

Permalink
fix: hovereffect on footer svg
Browse files Browse the repository at this point in the history
  • Loading branch information
Nishitbaria committed Oct 26, 2023
1 parent c5f7f81 commit dd3b7dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Technodes/src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default function Footer() {
className="text-gray-400 hover:text-gray-900 dark:hover:text-white"
>
<svg
className="w-6 h-6 hover:scale-150"
className="w-6 h-6 "
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
Expand All @@ -122,7 +122,7 @@ export default function Footer() {
className="text-gray-400 hover:text-gray-900 dark:hover:text-white"
>
<svg
className="w-6 h-6 hover:scale-150"
className="w-6 h-6 "
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
Expand All @@ -140,7 +140,7 @@ export default function Footer() {
className="text-gray-400 hover:text-gray-900 dark:hover:text-white"
>
<svg
className="w-6 h-6 hover:scale-150"
className="w-6 h-6 "
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
Expand All @@ -154,7 +154,7 @@ export default function Footer() {
className="text-gray-400 hover:text-gray-900 dark:hover:text-white"
>
<svg
className="w-6 h-6 hover:scale-150"
className="w-6 h-6 "
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
Expand All @@ -172,7 +172,7 @@ export default function Footer() {
className="text-gray-400 hover:text-gray-900 dark:hover:text-white"
>
<svg
className="w-6 h-6 hover:scale-150"
className="w-6 h-6 "
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
Expand Down
2 changes: 1 addition & 1 deletion Technodes/src/components/core/Eventpage/EventCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const DetailCard = ({ image, title, description, url, btnText, git }) => {
<div className="overflow-hidden rounded-2xl bg-content/5 p-4 bg-[#1d1e20]">
<img
src={image}
className="aspect-video w-full rounded-lg object-cover object-center"
className="aspect-video w-full rounded-lg object-cover object-center sm:mb-0"
alt={title + "banner"}
/>
<div className="pt-6 pb-3">
Expand Down

0 comments on commit dd3b7dc

Please sign in to comment.