feature/projects-all-the-way-down #3323

Merged
konrad merged 123 commits from feature/projects-all-the-way-down into main 2023-05-30 10:09:40 +00:00
Showing only changes of commit 0dd6f82a0e - Show all commits

View File

@ -4,7 +4,7 @@
<router-link :to="{name: 'home'}" class="logo">
<Logo width="164" height="48"/>
</router-link>
<ul class="menu-list other-menu-items">
<menu class="menu-list other-menu-items">
dpschen marked this conversation as resolved Outdated

Something that I don't know that long myself: adding a <ul> inside a <nav> doesn't give added benefit if we hide the list-item, because there are no added semantics. So listing the links is ok.

Something that I don't know that long myself: adding a `<ul>` inside a `<nav>` doesn't give added benefit if we hide the `list-item`, because there are no added semantics. So listing the links is ok.

So we could get rid of the ul entierly and only add the links?

So we could get rid of the `ul` entierly and only add the links?

That was my idea. But wait with doing this. Because when I wrote this I forgot that menu-list adds style the is structure dependant (might even be that the original class is coming from bulma).

That was my idea. But wait with doing this. Because when I wrote this I forgot that menu-list adds style the is structure dependant (might even be that the original class is coming from bulma).

If Bulma doesn't require you to use <ul> use <menu> instead.

If Bulma doesn't require you to use `<ul>` use `<menu>` instead.

menu still missing here. (you changed it in ProjectsNavigation).

`menu` still missing here. (you changed it in ProjectsNavigation).

Done

Done
<li>
<router-link :to="{ name: 'home'}" v-shortcut="'g o'">
<span class="menu-item-icon icon">
@ -45,7 +45,7 @@
{{ $t('team.title') }}
</router-link>
</li>
</ul>
</menu>
</nav>
<Loading variant="small" v-if="projectsLoading"/>
dpschen marked this conversation as resolved Outdated

Move v-if to front

Move `v-if` to front

Done

Done