109 - Rename bare shadow to shadow-sm

This commit is contained in:
myrmidex 2026-08-10 01:41:58 +02:00
parent 2823c5eeb3
commit 549f83a662
9 changed files with 18 additions and 18 deletions

View file

@ -1,6 +1,6 @@
@props(['routeArticle', 'tab'])
<div class="bg-white rounded-lg shadow p-5" wire:key="ra-{{ $routeArticle->id }}">
<div class="bg-white rounded-lg shadow-sm p-5" wire:key="ra-{{ $routeArticle->id }}">
<div class="flex items-start justify-between">
<div class="flex-1 min-w-0">
<div

View file

@ -87,7 +87,7 @@ class="p-2 rounded-md text-gray-400 hover:text-gray-600 hover:bg-gray-100"
<!-- Main content -->
<div class="lg:pl-64 flex flex-col flex-1">
<!-- Mobile header -->
<div class="sticky top-0 z-10 shrink-0 flex h-16 bg-white shadow lg:hidden">
<div class="sticky top-0 z-10 shrink-0 flex h-16 bg-white shadow-sm lg:hidden">
<button
@click="sidebarOpen = true"
class="px-4 border-r border-gray-200 text-gray-500 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500"

View file

@ -81,7 +81,7 @@ class="inline-flex items-center px-3 py-2 border border-transparent text-sm lead
@if ($pendingFeeds !== null && $pendingFeeds->isNotEmpty())
@foreach ($pendingFeeds as $group)
@php($isExpanded = $group->isExpanded())
<div class="bg-white rounded-lg shadow overflow-hidden" wire:key="feed-group-{{ $group->feed->id }}">
<div class="bg-white rounded-lg shadow-sm overflow-hidden" wire:key="feed-group-{{ $group->feed->id }}">
<button
wire:click="toggleFeed({{ $group->feed->id }})"
type="button"

View file

@ -13,7 +13,7 @@ class="inline-flex items-center px-4 py-2 bg-blue-600 text-white text-sm font-me
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
@forelse ($channels as $channel)
<div class="bg-white rounded-lg shadow p-6" wire:key="channel-{{ $channel->id }}">
<div class="bg-white rounded-lg shadow-sm p-6" wire:key="channel-{{ $channel->id }}">
<div class="flex items-start justify-between">
<div class="flex items-center">
<div class="shrink-0">

View file

@ -6,7 +6,7 @@
<h2 class="text-lg font-semibold text-gray-900 mb-4">System Overview</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Active Feeds -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center">
<div class="shrink-0">
<svg class="h-8 w-8 text-orange-500" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
@ -24,7 +24,7 @@
</div>
<!-- Platform Accounts -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center">
<div class="shrink-0">
<svg class="h-8 w-8 text-indigo-500" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
@ -42,7 +42,7 @@
</div>
<!-- Platform Channels -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center">
<div class="shrink-0">
<svg class="h-8 w-8 text-cyan-500" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
@ -60,7 +60,7 @@
</div>
<!-- Active Routes -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center">
<div class="shrink-0">
<svg class="h-8 w-8 text-pink-500" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
@ -94,7 +94,7 @@ class="rounded-md border border-gray-300 text-sm focus:border-blue-500 focus:rin
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- Articles Fetched -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center">
<div class="shrink-0">
<svg class="h-8 w-8 text-blue-500" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
@ -111,7 +111,7 @@ class="rounded-md border border-gray-300 text-sm focus:border-blue-500 focus:rin
</div>
<!-- Articles Published -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center">
<div class="shrink-0">
<svg class="h-8 w-8 text-green-500" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
@ -128,7 +128,7 @@ class="rounded-md border border-gray-300 text-sm focus:border-blue-500 focus:rin
</div>
<!-- Published Rate -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center">
<div class="shrink-0">
<svg class="h-8 w-8 text-purple-500" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">

View file

@ -13,7 +13,7 @@ class="inline-flex items-center px-4 py-2 bg-blue-600 text-white text-sm font-me
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
@forelse ($feeds as $feed)
<div class="bg-white rounded-lg shadow p-6" wire:key="feed-{{ $feed->id }}">
<div class="bg-white rounded-lg shadow-sm p-6" wire:key="feed-{{ $feed->id }}">
<div class="flex items-start justify-between">
<div class="flex items-center">
<div class="shrink-0">

View file

@ -13,7 +13,7 @@ class="inline-flex items-center px-4 py-2 border border-transparent text-sm font
<div class="space-y-6">
@forelse ($routes as $route)
<div class="bg-white rounded-lg shadow p-6" wire:key="route-{{ $route->feed_id }}-{{ $route->platform_channel_id }}">
<div class="bg-white rounded-lg shadow-sm p-6" wire:key="route-{{ $route->feed_id }}-{{ $route->platform_channel_id }}">
<div class="flex items-start justify-between">
<div class="flex-1 min-w-0">
<div class="flex items-center space-x-3 mb-2">

View file

@ -3,7 +3,7 @@
<div class="space-y-6">
<!-- Article Processing Settings -->
<div class="bg-white rounded-lg shadow">
<div class="bg-white rounded-lg shadow-sm">
<div class="px-6 py-4 border-b border-gray-200">
<h2 class="text-lg font-medium text-gray-900 flex items-center">
<svg class="h-5 w-5 mr-2" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
@ -100,7 +100,7 @@ class="flex-shrink-0"
</div>
<!-- Feed Monitoring Settings -->
<div class="bg-white rounded-lg shadow">
<div class="bg-white rounded-lg shadow-sm">
<div class="px-6 py-4 border-b border-gray-200">
<h2 class="text-lg font-medium text-gray-900 flex items-center">
<svg class="h-5 w-5 mr-2" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">

View file

@ -7,19 +7,19 @@
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6">
<div class="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
<div class="p-4 sm:p-8 bg-white shadow-sm sm:rounded-lg">
<div class="max-w-xl">
@include('profile.partials.update-profile-information-form')
</div>
</div>
<div class="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
<div class="p-4 sm:p-8 bg-white shadow-sm sm:rounded-lg">
<div class="max-w-xl">
@include('profile.partials.update-password-form')
</div>
</div>
<div class="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
<div class="p-4 sm:p-8 bg-white shadow-sm sm:rounded-lg">
<div class="max-w-xl">
@include('profile.partials.delete-user-form')
</div>