We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e275ae commit 250551eCopy full SHA for 250551e
scripts/tenfoot-navigation.js
@@ -101,6 +101,17 @@ class TenFootNavigator {
101
}
102
103
104
+document.querySelectorAll('.service-card').forEach(card => {
105
+ card.addEventListener('focus', () => {
106
+ card.scrollIntoView({
107
+ behavior: 'smooth',
108
+ inline: 'center',
109
+ block: 'nearest'
110
+ });
111
112
+});
113
+
114
115
// Initialize when DOM is ready
116
if (document.readyState === 'loading') {
117
document.addEventListener('DOMContentLoaded', () => {
0 commit comments