I cant pass the last test

I am making technical documentation site but i cant pass this test: (On regular sized devices (laptops, desktops), the element with id=“navbar” should be shown on the left half of the screen. It should always be visible to the user and should remain stationary. You may need to enlarge the viewport or zoom out to ensure the navbar doesn’t scroll with the page content.)
Please someone help this is my code: https://codepen.io/lukasvagner/pen/gOWVdbm
I tried everithing.
update :styl doesnt working :sweat:

If you have an answer to the poster’s question, why not reply here with it? We would all like to benefit from your wisdom. After all, that is what the forum here is for.

I added this and the test pass

@media screen and (max-width: 400px) {
.navbar a {
text-align: center;
float: none;
}
}

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.