Skip to content
Snippets Groups Projects
Commit aacbd55a authored by Nazik Abdyldabekova's avatar Nazik Abdyldabekova
Browse files

FIX: corrected logic & improved css

parent 407a3973
Branches
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ function clearList() { ...@@ -41,7 +41,7 @@ function clearList() {
<SidebarInset> <SidebarInset>
<slot /> <slot />
</SidebarInset> </SidebarInset>
<Sidebar collapsible="offcanvas" side="right" style="--sidebar-width: 26rem;"> <Sidebar collapsible="offcanvas" side="right" style="--sidebar-width: 24rem;">
<SidebarHeader mt-1 text-center> <SidebarHeader mt-1 text-center>
Planned Actions Planned Actions
</SidebarHeader> </SidebarHeader>
...@@ -55,10 +55,10 @@ function clearList() { ...@@ -55,10 +55,10 @@ function clearList() {
</SidebarGroup> </SidebarGroup>
<SidebarSeparator /> <SidebarSeparator />
<SidebarGroup class="m-b-2 m-t-2 flex flex-row justify-center"> <SidebarGroup class="m-b-2 m-t-2 flex flex-row justify-center">
<Button variant="outline" w="1/8" rounded-bl-lg rounded-br-none rounded-tl-lg rounded-tr-none> <Button variant="outline" w="1/7" rounded-bl-lg rounded-br-none rounded-tl-lg rounded-tr-none>
<IconTooling /> <IconTooling />
</Button> </Button>
<Button variant="outline" w="1/8" rounded-bl-none rounded-br-lg rounded-tl-none rounded-tr-lg> <Button variant="outline" w="1/7" rounded-bl-none rounded-br-lg rounded-tl-none rounded-tr-lg>
<IconTooling /> <IconTooling />
</Button> </Button>
</SidebarGroup> </SidebarGroup>
...@@ -89,7 +89,11 @@ function clearList() { ...@@ -89,7 +89,11 @@ function clearList() {
<SidebarSeparator /> <SidebarSeparator />
<SidebarGroup> <SidebarGroup>
<DragAndDrop :length="actions.length" :emptyListPhrase="emptyListPhrase"> <DragAndDrop :length="actions.length" :emptyListPhrase="emptyListPhrase">
<DragAndDropItem v-for="action in actions" :key="action.id" :item="action" :items="actions" /> <DragAndDropItem v-for="action in actions" :key="action.id" :item="action" :items="actions">
<div class="">
<h1>{{ action.title }}</h1>
</div>
</DragAndDropItem>
</DragAndDrop> </DragAndDrop>
</SidebarGroup> </SidebarGroup>
</SidebarContent> </SidebarContent>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment