Compare commits

...

2 Commits

Author SHA1 Message Date
OFF0 25d3283a80
routes: fix internal link detection
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/pr/woodpecker Pipeline was successful Details
it just checked link length, but should at least ensure that the
condition which checks for internal links starts with a slash.
1 year ago
OFF0 80d3a3f6a7
view: prevent scrolling navigation elements
scrolling on navigation moved the whole view up, this change
prevents nav from being scrollable.
1 year ago

@ -317,7 +317,7 @@ const handleLink = (a: HTMLAnchorElement, e: MouseEvent) => {
|| href.startsWith('/feed') || href.startsWith('/feed')
|| href.startsWith('/note') || href.startsWith('/note')
|| href.startsWith('/npub') || href.startsWith('/npub')
|| href.length === 65 || (href.startsWith('/') && href.length === 65)
) { ) {
route(href); route(href);
history.pushState({}, '', href); history.pushState({}, '', href);

@ -106,9 +106,10 @@ body {
} }
html, body { html, body {
min-height: 100%;
height: 100%; height: 100%;
margin: 0; margin: 0;
min-height: 100%;
overflow: clip;
} }
h1, h2, h3, h4, h5 { font-weight: normal; } h1, h2, h3, h4, h5 { font-weight: normal; }

Loading…
Cancel
Save