Compare commits

..

4 Commits

Author SHA1 Message Date
Filip Krumpe
fa6c94153f Merge branch 'ft_menu' of https://git.filipkrumpe.de/filip/svelte_flask_template into ft_menu 2022-01-17 17:14:31 +01:00
Filip Krumpe
31a9d21b71 Remove z-index bug 2022-01-17 17:10:49 +01:00
Filip Krumpe
c3b6c4c547 add the current packages in package-lock 2022-01-17 17:10:37 +01:00
Filip Krumpe
b65f4b91f2 correctly ignore the build files 2022-01-17 17:10:14 +01:00
2 changed files with 2 additions and 2 deletions

2
webapp/.gitignore vendored
View File

@ -1,6 +1,6 @@
.DS_Store
node_modules
/public/build
build/
/.svelte-kit
/package
.env

View File

@ -6,7 +6,7 @@
}
</script>
<aside class="absolute w-full h-full bg-gray-200 border-r-2 shadow-lg" class:open>
<aside class="absolute w-full h-full bg-gray-200 border-r-2 shadow-lg z-10" class:open>
<nav class="p-12 text-xl">
<a class="block" href="/" on:click={close}>Home</a>
<a class="block" href="/about" on:click={close}>About</a>