diff --git a/resources/views/components/champions/grid_info.blade.php b/resources/views/components/champions/grid_info.blade.php index 8efa766..d47bb64 100644 --- a/resources/views/components/champions/grid_info.blade.php +++ b/resources/views/components/champions/grid_info.blade.php @@ -13,10 +13,10 @@
-
+
-
+
{{ $champion->name }} Splash Art diff --git a/resources/views/components/posts/listposts.blade.php b/resources/views/components/posts/listposts.blade.php index bf16e2a..ffc87dc 100644 --- a/resources/views/components/posts/listposts.blade.php +++ b/resources/views/components/posts/listposts.blade.php @@ -1,23 +1,23 @@ @use('Carbon\Carbon') -
-
+
+
@foreach($posts as $post) @if($post->hidden) @continue @endif -
+
+ class="absolute px-1 py-1 text-sm font-medium text-gray-100 rounded-lg top-4 left-4 bg-black/60"> - Post Thumbnail + Post Thumbnail
-

{{ $post->title }}

+

{{ $post->title }}

{{ $post->description }}

+ class="absolute text-sm text-orange-400 bottom-4 right-4 hover:text-orange-600">Read more
@endforeach
diff --git a/resources/views/components/skins/grid_info.blade.php b/resources/views/components/skins/grid_info.blade.php index c9afe1a..bcd65cf 100644 --- a/resources/views/components/skins/grid_info.blade.php +++ b/resources/views/components/skins/grid_info.blade.php @@ -23,7 +23,7 @@
-
{{$skin->skin_name}} Splash Artdescription) @push('meta_tags') - + @@ -13,35 +13,32 @@ @endpush @section('content') - Back + Back to posts
- - - {{$post->title}} Thumbnail - + {{ $post->title }} Thumbnail +
-

- “{{$post->title}}”

-

+

+ “{{ $post->title }}”

+

“{{ $post->description }}”

- {{$post->contents}} + {{ $post->contents }}

- Tagged with: - {{ isset($post->tags) ? implode(', ', $post->tags) - : 'League of Legends' }} + Tagged with: + {{ isset($post->tags) ? implode(', ', $post->tags) : 'League of Legends' }}

diff --git a/tailwind.config.js b/tailwind.config.js index f02a841..e002198 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -35,9 +35,6 @@ module.exports = { } }, }, - corePlugins: { - aspectRatio: false, - }, variants: { extend: { textColor: ['group-hover'], @@ -45,7 +42,6 @@ module.exports = { }, plugins: [ require('flowbite/plugin'), - require('@tailwindcss/aspect-ratio'), require('tailwind-capitalize-first-letter'), require('@tailwindcss/typography'), ],