There is a bug in Korolev that scroll is not working in the navbar, so the link for 'blog' is inaccessible in full screen and I have to resize my window (reduce width) to see it.
Even with max-height set to 100% it doesn't work. It starts to work with it is set to around 80% but the blur effect does not cover the full screen in all screen sizes.
In general reducing the height of the window will still not enable any sort of scroll option. This I fixed in my local copy quite easily by adding overflow:auto; in css for ul in nav.svelte, but it doesn't fix the above issue.
Steps to reproduce:
1) Open the navbar on the website.
2) Try and scroll to see the link for 'Blog' which you will find out you won't be able to.
3) Try resizing your window like reducing the height, more links will go out of view and you won't be able to access them, athough adding overflow:auto; mostly fixes this.
There is a bug in Korolev that scroll is not working in the navbar, so the link for 'blog' is inaccessible in full screen and I have to resize my window (reduce width) to see it.
Even with
max-height
set to 100% it doesn't work. It starts to work with it is set to around 80% but the blur effect does not cover the full screen in all screen sizes.In general reducing the height of the window will still not enable any sort of scroll option. This I fixed in my local copy quite easily by adding
overflow:auto;
in css forul
in nav.svelte, but it doesn't fix the above issue.Steps to reproduce:
1) Open the navbar on the website. 2) Try and scroll to see the link for 'Blog' which you will find out you won't be able to. 3) Try resizing your window like reducing the height, more links will go out of view and you won't be able to access them, athough adding
overflow:auto;
mostly fixes this.