From ea14f0c10cbd98531e5b61ad2061d0544999f9a8 Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Merino Date: Fri, 12 Jul 2024 17:45:33 +0200 Subject: Components: Sidebar: Dont round corners --- src/components/Sidebar/Sidebar.tsx | 2 +- src/lib/types.tsx | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/src/components/Sidebar/Sidebar.tsx b/src/components/Sidebar/Sidebar.tsx index 901ba87..7ccb0ce 100644 --- a/src/components/Sidebar/Sidebar.tsx +++ b/src/components/Sidebar/Sidebar.tsx @@ -3,7 +3,7 @@ import SidebarButton from "./SidebarButton"; export default function SideBar(props: any) { return (
+ className="relative flex h-full w-full max-w-[20rem] flex-col bg-white bg-clip-border text-gray-700 shadow-xl shadow-blue-gray-900/5">
fs-tracer diff --git a/src/lib/types.tsx b/src/lib/types.tsx index 00ab909..a4c6549 100644 --- a/src/lib/types.tsx +++ b/src/lib/types.tsx @@ -5,13 +5,3 @@ export type FSTracerFile = { contents: string; timestamp: string; } - -interface FileComponentProps { - file: FSTracerFile -} - -export default function FileComponent(props: FileComponentProps) { - return ( -

file: {props.file.absolute_path}

- ) -} -- cgit 1.4.1