refactor(App): enhance vertical sidebar navigation with icon integration and improved dropdown item styling for better user experience
Publish Fast Tabler Docker image / build-and-push-fast (push) Failing after 1m41s

This commit is contained in:
2026-02-16 15:21:46 +07:00
parent b87af004ee
commit 5cc19b8c3e
2 changed files with 17 additions and 2 deletions
+4 -1
View File
@@ -296,8 +296,11 @@ function MainLayout() {
<Link
key={item.id}
to={item.path}
className={`dropdown-item${activeTab === item.id ? ' active' : ''}`}
className={`dropdown-item d-flex align-items-center${activeTab === item.id ? ' active' : ''}`}
>
<span className="nav-link-icon me-2">
<item.icon className="icon" />
</span>
{item.title}
</Link>
))}