chore: use <menu> instead of <ul>
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
kolaente 2023-04-01 22:02:08 +02:00
parent f451f69dc6
commit ad4eb25eac
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 7 additions and 3 deletions

View File

@ -6,7 +6,7 @@
@start="() => drag = true" @start="() => drag = true"
@end="saveProjectPosition" @end="saveProjectPosition"
handle=".handle" handle=".handle"
tag="ul" tag="menu"
item-key="id" item-key="id"
:disabled="!canEditOrder" :disabled="!canEditOrder"
:component-data="{ :component-data="{

View File

@ -14,6 +14,10 @@
} }
.menu-list { .menu-list {
list-style: none;
margin: 0;
padding: 0;
&.other-menu-items li, &.other-menu-items li,
li > section { li > section {
height: 44px; height: 44px;
@ -42,7 +46,7 @@
} }
} }
li > ul { li > menu {
margin: 0 0 0 var(--menu-nested-list-margin); margin: 0 0 0 var(--menu-nested-list-margin);
} }
@ -126,7 +130,7 @@
cursor: grab; cursor: grab;
} }
ul { menu {
border-left: 0; border-left: 0;
} }
} }