Skip to content

Commit e8ba56c

Browse files
committed
style: adjust header color and footer link hover effecets
1 parent 2374085 commit e8ba56c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

components/buttons/Sponsor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
function Sponsor() {
33
return (
44
<a
5-
className='inline-block'
5+
className='inline-block transition-transform duration-200 hover:scale-105 hover:drop-shadow-lg'
66
target='_blank'
77
rel='noopener noreferrer'
88
href='https://github.com/sponsors/nikohoffren?o=esc'

components/layout/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const Footer = () => {
9999
>
100100
<span>GitHub Stars</span>
101101
{starCount !== null ? (
102-
<span className='ml-2 rounded-full bg-gray-100 px-2 py-1 text-xs text-gray-700 group-hover:bg-gray-200'>
102+
<span className='ml-2 rounded-full bg-gray-100 px-2 py-1 text-xs text-gray-700'>
103103
{starCount}
104104
</span>
105105
) : (

components/layout/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const Header = () => {
118118
}
119119

120120
return (
121-
<nav className='border-b border-gray-200 bg-[var(--bg-primary)] shadow-md dark:border-gray-700'>
121+
<nav className='border-b border-gray-200 bg-gray-50 shadow-md dark:border-gray-700'>
122122
<div className='modern-container'>
123123
<div className='flex h-16 items-center justify-between'>
124124
<div className='flex items-center space-x-8'>

0 commit comments

Comments
 (0)