diff --git a/frontend/src/components/FeaturedNotebooks.astro b/frontend/src/components/FeaturedNotebooks.astro index 467c975..3286a4e 100644 --- a/frontend/src/components/FeaturedNotebooks.astro +++ b/frontend/src/components/FeaturedNotebooks.astro @@ -46,7 +46,9 @@ const engineColor: Record href={`/notebook/${nb.id}`} class:list={[ 'group block rounded-lg border bg-slate-900/50 overflow-hidden', - 'hover:border-blue-500/40 hover:bg-slate-800/70 transition-all', + 'hover:border-blue-500/40 hover:bg-slate-800/70', + 'hover:-translate-y-1 hover:shadow-lg hover:shadow-black/25', + 'transition-all duration-200', 'border-slate-800', ]} > diff --git a/frontend/src/components/NotebookCard.tsx b/frontend/src/components/NotebookCard.tsx index 40bbb7d..84b354c 100644 --- a/frontend/src/components/NotebookCard.tsx +++ b/frontend/src/components/NotebookCard.tsx @@ -30,7 +30,7 @@ export function NotebookCard({ notebook }: NotebookCardProps) { return ( {schematic_svg ? (
+
@@ -61,7 +61,7 @@ export function CellList() { } return ( -
+
{cells.map((cell, index) => { const isFirst = index === 0; const isLast = index === cells.length - 1; diff --git a/frontend/src/components/notebook/NotebookEditor.tsx b/frontend/src/components/notebook/NotebookEditor.tsx index ffe03cf..0167660 100644 --- a/frontend/src/components/notebook/NotebookEditor.tsx +++ b/frontend/src/components/notebook/NotebookEditor.tsx @@ -90,7 +90,7 @@ export default function NotebookEditor({ notebookId }: NotebookEditorProps) { {/* Status bar at bottom */} -