Add shadows to mobile cards and fix AdminProducts wrapper
- Add shadow-sm to all mobile row cards for consistency - Hide Card wrapper on mobile for AdminProducts page - Add shadows to review cards in AdminReviews - Applied to AdminMembers, AdminOrders, AdminConsulting, AdminEvents, AdminProducts, AdminReviews 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -412,7 +412,7 @@ export default function AdminConsulting() {
|
||||
{/* Mobile Card Layout */}
|
||||
<div className="md:hidden space-y-3">
|
||||
{upcomingSlots.map((slot) => (
|
||||
<div key={slot.id} className="border-2 border-border rounded-lg p-4 space-y-3 bg-card">
|
||||
<div key={slot.id} className="border-2 border-border rounded-lg p-4 space-y-3 bg-card shadow-sm">
|
||||
<div>
|
||||
<div className="flex items-start justify-between gap-2">
|
||||
<div className="flex-1 min-w-0">
|
||||
@@ -542,7 +542,7 @@ export default function AdminConsulting() {
|
||||
{/* Mobile Card Layout */}
|
||||
<div className="md:hidden space-y-3">
|
||||
{pastSlots.slice(0, 20).map((slot) => (
|
||||
<div key={slot.id} className="border-2 border-border rounded-lg p-4 space-y-3 bg-card">
|
||||
<div key={slot.id} className="border-2 border-border rounded-lg p-4 space-y-3 bg-card shadow-sm">
|
||||
<div>
|
||||
<div className="flex items-start justify-between gap-2">
|
||||
<div className="flex-1 min-w-0">
|
||||
|
||||
Reference in New Issue
Block a user