Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Commit

Permalink
fix: list offset
Browse files Browse the repository at this point in the history
  • Loading branch information
TheComputerM committed Aug 27, 2020
1 parent 80e14a2 commit 95c076b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
export let items = routes;
export let depth = 0;
export let visible = true;
let offset = `${(depth + 1) * 32}px`;
let offset = `${(depth + 1) * 28}px`;
const escaped = (text = '') => text.replace(/\//g, '');
const unsubscribe = page.subscribe(({ path }) => {
Expand Down

0 comments on commit 95c076b

Please sign in to comment.