Change icon and move expand/collapse to bottom

This commit is contained in:
José Valim 2024-08-25 02:32:27 +02:00
parent 7be8957b8e
commit 8ff63bea01

View file

@ -419,7 +419,7 @@ defmodule LivebookWeb.SessionLive.Render do
class="flex flex-col h-full w-full max-w-xs absolute z-30 top-0 left-[64px] overflow-y-auto shadow-xl md:static md:shadow-none bg-gray-50 border-r border-gray-100 px-6 pt-16 md:py-8" class="flex flex-col h-full w-full max-w-xs absolute z-30 top-0 left-[64px] overflow-y-auto shadow-xl md:static md:shadow-none bg-gray-50 border-r border-gray-100 px-6 pt-16 md:py-8"
data-el-side-panel data-el-side-panel
> >
<div data-el-sections-list> <div class="flex grow" data-el-sections-list>
<.outline_list data_view={@data_view} /> <.outline_list data_view={@data_view} />
</div> </div>
<div data-el-clients-list> <div data-el-clients-list>
@ -511,7 +511,7 @@ defmodule LivebookWeb.SessionLive.Render do
data-el-sections-list-item data-el-sections-list-item
data-section-id={section_item.id} data-section-id={section_item.id}
> >
<.remix_icon icon="font-size" class="text-lg font-normal leading-none" /> <.remix_icon icon="h-2" class="text-lg font-normal leading-none" />
<span><%= section_item.name %></span> <span><%= section_item.name %></span>
<%!-- <%!--
Note: the container has overflow-y auto, so we cannot set overflow-x visible, Note: the container has overflow-y auto, so we cannot set overflow-x visible,