defmodule Customizations.Navbar do def pick_outfit(:active_item) do %{ class: "flex flex-col gap-0.5 items-center text-xs", outline: "p-1 bg-piccolo/10 rounded-md", icon: "bg-piccolo" } end def pick_outfit(:item) do %{ class: "flex flex-col gap-0.5 items-center text-xs", outline: "p-1", icon: "" } end def pick_outfit(:list) do %{class: "flex flex-col justify-start items-center py-4 w-full h-full gap-4" } end end