update recent page

This commit is contained in:
Dede Fuji Abdul 2023-10-26 16:58:45 +07:00
parent 92706caf90
commit 6c608fb6cb
2 changed files with 5 additions and 4 deletions

View File

@ -62,10 +62,10 @@
:class="['h-6 w-6 flex-none', active ? 'opacity-100' : 'opacity-40']" />
<div class="flex flex-col flex-auto ml-3 space-y-1">
<span class="text-sm font-medium text-gray-800 truncate">
<span class="text-sm font-medium text-gray-800 truncate line-clamp-1">
{{ menu.name }}
</span>
<span class="text-xs text-gray-500 ">
<span class="text-xs text-gray-500 line-clamp-1">
{{ menu.path.replace('/home/', '') }}
</span>
</div>

View File

@ -39,10 +39,11 @@
:class="['w-8 h-8 fill-gray-600 group-hover:fill-white']" />
<div class="flex flex-col items-start flex-1 ml-3 space-y-1">
<span class="text-sm font-medium text-gray-800 truncate group-hover:text-white">
<span
class="text-sm font-medium text-gray-800 truncate group-hover:text-white line-clamp-1">
{{ menu.name }}
</span>
<span class="text-xs text-gray-500 group-hover:text-white">
<span class="text-xs text-gray-500 group-hover:text-white line-clamp-1">
{{ menu.path.replace('/home/', '') }}
</span>
</div>