AcaMate_Web/Program/Views/Academy/Main/BookMark.razor
SEAN-59 7284dca6f2 Record
정리전 로컬 데이터 푸시
2025-10-28 20:47:58 +09:00

19 lines
1.3 KiB
Plaintext

<div class="self-stretch flex flex-col justify-start items-start gap-4 scrollbar-hide">
<div class="flex flex-col justify-center items-start gap-1">
<div class="justify-center text-text-title text-3xl font-bold font-['Noto_Sans_KR']">즐겨 찾기</div>
<div class="justify-center">
<span class="text-text-detail text-base font-normal font-['Noto_Sans_KR']">즐겨찾기는 최대 </span>
<span class="text-text-detail text-base font-bold font-['Noto_Sans_KR']">5개</span>
<span class="text-text-detail text-base font-normal font-['Noto_Sans_KR']"> 까지 가능합니다.</span>
</div>
</div>
<div class="self-stretch flex justify-start items-center gap-6 overflow-x-auto overflow-y-hidden scrollbar-hide"style="-ms-overflow-style: none; scrollbar-width: none;">
@foreach (var favorite in Favorites)
{
<div class="p-2 rounded-lg outline outline-2 outline-offset-[-2px] outline-text-disabled flex justify-start items-center gap-3 overflow-hidden flex-shrink-0">
<img src="Resources/Images/Icon/Bookmark.png" alt="Home" class="w-8 h-8">
<div class="justify-center text-text-title text-[20px] font-medium font-['Noto_Sans_KR'] whitespace-nowrap">@favorite.Name</div>
</div>
}
</div>
</div>