Apply suggestions from code review

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Deco Vander 2025-07-06 00:31:51 -04:00 committed by GitHub
parent cb0cd30243
commit 47fe31e08e
2 changed files with 6 additions and 2 deletions

View file

@ -146,9 +146,13 @@
} }
&:hover { &:hover {
background-color: var(--table-hover) !important; background-color: var(--table-hover);
transform: none; transform: none;
} }
.theme-toggle:hover & {
background-color: var(--table-hover);
}
} }
// Back-link button mixin (shared component) // Back-link button mixin (shared component)

View file

@ -4,7 +4,7 @@ import { Location } from '../types';
interface MapOptions { interface MapOptions {
width: number; width: number;
height: number; height: number;
// Removed unused padding property padding?: number; // Reintroduced padding property
} }
export class MapImageService { export class MapImageService {