Skip to content

Commit 6d95244

Browse files
committed
fix: Improve footer styling and add trademark disclaimer
- Add white hover state for footer links with smooth transition - Remove Products section from footer (redundant with navbar) - Add Gravity Forms trademark disclaimer to copyright notice
1 parent 9e74616 commit 6d95244

2 files changed

Lines changed: 14 additions & 18 deletions

File tree

docusaurus.config.js

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -374,23 +374,6 @@ const config = {
374374
footer: {
375375
style: 'dark',
376376
links: [
377-
{
378-
title: 'Products',
379-
items: [
380-
{
381-
label: 'GravityView',
382-
to: '/docs/gravityview',
383-
},
384-
{
385-
label: 'GravityCalendar',
386-
to: '/docs/gravitycalendar',
387-
},
388-
{
389-
label: 'GravityCharts',
390-
to: '/docs/gravitycharts',
391-
},
392-
],
393-
},
394377
{
395378
title: 'Resources',
396379
items: [
@@ -422,7 +405,7 @@ const config = {
422405
],
423406
},
424407
],
425-
copyright: `Copyright © ${new Date().getFullYear()} GravityKit.`,
408+
copyright: `Copyright © ${new Date().getFullYear()} GravityKit. Gravity Forms is a registered trademark of Rocketgenius, Inc.`,
426409
},
427410
prism: {
428411
theme: prismThemes.github,

src/css/custom.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,4 +253,17 @@
253253

254254
[data-theme='dark'] .navbar-purchase-button:hover {
255255
background-color: #e01860;
256+
}
257+
258+
/* Footer link hover styles */
259+
.footer__link-item:hover {
260+
color: #fff;
261+
}
262+
263+
.footer__links .footer__link-item {
264+
transition: color 0.2s ease;
265+
}
266+
267+
[data-theme='dark'] .footer__link-item:hover {
268+
color: #fff;
256269
}

0 commit comments

Comments
 (0)