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:13:37 -04:00 committed by GitHub
parent 96dc6bde42
commit ebafb1fa5a
4 changed files with 7 additions and 7 deletions

View file

@ -22,13 +22,13 @@
"postinstall": "npm run build-css"
},
"dependencies": {
"canvas": "^3.1.2",
"cors": "^2.8.5",
"dotenv": "^17.0.1",
"express": "^4.18.2",
"express-rate-limit": "^7.5.1",
"node-cron": "^3.0.3",
"sharp": "^0.34.2",
"sqlite3": "^5.1.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"

View file

@ -1,5 +1,5 @@
document.addEventListener('DOMContentLoaded', () => {
const map = L.map('map').setView([42.960081464833195, -85.67402711517647], 10);
const map = L.map('map').setView([42.96008, -85.67403], 10);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 18,

View file

@ -132,9 +132,9 @@
@include flex-center;
transition: all 0.3s ease;
box-shadow: 0 2px 4px var(--shadow);
background-color: var(--card-bg) !important;
color: var(--text-color) !important;
padding: 0 !important; // Remove padding to ensure centering
background-color: var(--card-bg);
color: var(--text-color);
padding: 0; // Remove padding to ensure centering
// Ensure the icon is centered
.theme-icon {

View file

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