This commit is contained in:
MeysamMoghaddam
2025-10-13 17:14:39 +03:30
parent 86abecb3ce
commit a5699364c7
7 changed files with 44 additions and 44 deletions
@@ -32,7 +32,7 @@ else
<MudGrid Spacing="4">
<!-- Sidebar (Mobile First) -->
<MudItem xs="12" lg="4" Class="order-1 order-lg-2">
<MudPaper Elevation="2" Class="pa-6 rounded-2xl mud-theme-surface sticky-top">
<MudPaper Elevation="2" Class="pa-6 sticky-top">
<MudStack Class="mb-4">
<!-- Package Image -->
<MudPaper Class="pa-2 rounded-xl" Style="background: radial-gradient(600px 280px at 120% 0, #daccff 0, transparent 60%), radial-gradient(600px 280px at -10% 100%, #ffe2f2 0, transparent 60%), linear-gradient(180deg, #fff, #fbfaff);">
@@ -102,7 +102,7 @@ else
<!-- Main Content -->
<MudItem xs="12" lg="8" Class="order-2 order-lg-1">
<MudPaper Elevation="2" Class="pa-6 rounded-2xl mud-theme-surface">
<MudPaper Elevation="2" Class="pa-6">
<!-- Package Header -->
<MudStack Spacing="4">
@@ -136,7 +136,7 @@ else
</MudPaper>
<!-- Reviews Section -->
<MudPaper Elevation="2" Class="pa-6 rounded-2xl mud-theme-surface mt-4">
<MudPaper Elevation="2" Class="pa-6 mt-4">
<!-- Comment Submission Form (only for authenticated users) -->
@if (_isAuthenticated)
@@ -226,7 +226,7 @@ else
@foreach (var relatedPackage in _relatedPackages)
{
<MudItem xs="12" md="4">
<MudPaper Elevation="2" Class="pa-4 rounded-2xl d-flex flex-column h-100 cursor-pointer"
<MudPaper Elevation="2" Class="pa-4 d-flex flex-column h-100 cursor-pointer"
OnClick="() => NavigateToPackage(relatedPackage.Id)">
<MudImage Src="@relatedPackage.Image"
Alt="@relatedPackage.Title"