Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Update build and styling tooling (Tailwind CSS v4, `@vitejs/plugin-react` v5, removed PostCSS/autoprefixer)
- Fix iOS Safari geolocation re-prompting on every page reload (use `watchPosition`, guard `permissions.query`)
- Security and dependency updates (8 vulnerabilities fixed, ESLint v9, React/Prettier updated)
- Fix "you are here" marker not visible on iOS Safari (corrupted SVG)
- Fix route page content not scrollable when overflowing viewport

## [1.0.8] - 2025-28-01

Expand Down
2 changes: 2 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ function App() {
useEffect(() => {
const watchId = navigator.geolocation.watchPosition(
(position) => {
setInfo(false);
setInfoText("");
setLat(position.coords.latitude);
setLong(position.coords.longitude);
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/routes/RoutePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function RoutePage() {

return (
<>
<div className="p-5 absolute left-0 top-0 right-0 bottom-0 flex flex-col justify-between">
<div className="p-5 absolute left-0 top-0 right-0 bottom-0 flex flex-col justify-between overflow-y-auto">
<div>
<TagList classes="relative text-lg" tags={tags} />
<h1 className="text-4xl font-extrabold relative word-break">{title}</h1>
Expand Down
30 changes: 3 additions & 27 deletions src/icons/you-are-here-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading