@kyro-cms/admin 0.9.5 → 0.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -360,7 +360,7 @@ export function ListView({
360
360
  <div className="surface-tile p-4 flex flex-col lg:flex-row gap-4 items-start lg:items-center">
361
361
  {/* Search */}
362
362
  <div className="relative flex-1 w-full lg:max-w-md">
363
- <Search className="w-4 h-4" />
363
+ <Search className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-[var(--kyro-text-muted)]" />
364
364
  <input
365
365
  type="text"
366
366
  placeholder="Search..."
@@ -599,9 +599,9 @@ export function MediaGallery({
599
599
 
600
600
  {/* Main Content Area */}
601
601
  <div className="flex-1 flex flex-col min-h-0 bg-[var(--kyro-bg)]">
602
- <div className={`flex-1 overflow-y-auto custom-scrollbar ${pickerMode ? "px-2 py-4" : "py-8 px-4"}`}>
602
+ <div className={`flex-1 overflow-y-auto custom-scrollbar ${pickerMode ? "px-2 py-4" : "py-4 px-2 md:py-8 md:px-4"}`}>
603
603
  {loading ? (
604
- <div className="grid grid-cols-2 gap-4 sm:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5">
604
+ <div className="grid grid-cols-2 gap-4 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5">
605
605
  <Shimmer variant="media-card" count={12} />
606
606
  </div>
607
607
  ) : items.length === 0 ? (