diff --git a/craft/src/panels/topbar/TemplateModal.tsx b/craft/src/panels/topbar/TemplateModal.tsx index 75f3330..cf7ee49 100644 --- a/craft/src/panels/topbar/TemplateModal.tsx +++ b/craft/src/panels/topbar/TemplateModal.tsx @@ -247,7 +247,13 @@ export const TemplateModal: React.FC = ({ open, onClose }) = Choose a template to get started quickly

- @@ -262,6 +268,12 @@ export const TemplateModal: React.FC = ({ open, onClose }) = ...tabStyle, ...(activeTab === tab.value ? tabActiveStyle : {}), }} + onMouseEnter={(e) => { + if (activeTab !== tab.value) (e.currentTarget as HTMLElement).style.background = 'var(--color-bg-hover)'; + }} + onMouseLeave={(e) => { + if (activeTab !== tab.value) (e.currentTarget as HTMLElement).style.background = 'transparent'; + }} > {tab.label}