File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -9513,6 +9513,14 @@ html {
9513
9513
column-gap : 0.5rem ;
9514
9514
}
9515
9515
9516
+ .lg\:gap-y-2 {
9517
+ row-gap : 0.5rem ;
9518
+ }
9519
+
9520
+ .lg\:gap-y-4 {
9521
+ row-gap : 1rem ;
9522
+ }
9523
+
9516
9524
.lg\:space-y-0 > : not ([hidden ]) ~ : not ([hidden ]) {
9517
9525
--tw-space-y-reverse : 0 ;
9518
9526
margin-top : calc (0px * calc (1 - var (--tw-space-y-reverse )));
Original file line number Diff line number Diff line change 11
11
<time datetime =" {{ $article -> created_at -> format (' Y-m-d' ) } }" class =" font-sans text-sm leading-5 text-skin-base capitalize" >
12
12
{{ $article -> created_at -> isoFormat (' LL' ) } }
13
13
</time >
14
- <a href =" {{ route (' articles.show' , $article ) } }" class =" mt-2 inline- flex items-center justify-between group" >
14
+ <a href =" {{ route (' articles.show' , $article ) } }" class =" mt-2 flex items-center justify-between group" >
15
15
<h4 class =" text-lg leading-6 font-semibold font-sans text-skin-inverted group-hover:text-skin-primary" >{{ $article -> title } } </h4 >
16
16
<x-heroicon-o-external-link class =" ml-2.5 h-5 w-5 text-skin-base" />
17
17
</a >
Original file line number Diff line number Diff line change 19
19
</p >
20
20
</div >
21
21
@if ($article -> tags -> isNotEmpty () )
22
- <div class =" mt-4 flex items-center space-x-2" >
22
+ <div class =" mt-2 flex items-center space-x-2" >
23
23
@foreach ($article -> tags as $tag )
24
24
<x-tag :tag =" $tag" />
25
25
@endforeach
Original file line number Diff line number Diff line change 67
67
68
68
<div class =" py-12 lg:py-20" >
69
69
<x-section-header title =" Articles Populaires" content =" Découvrez les articles les plus appréciés et partagés par les membres de la communauté" />
70
- <div class =" mt-8 grid gap-6 max-w-xl mx-auto lg:grid-rows-2 lg:grid-flow-col lg:grid-cols-2 lg:gap-y-0 lg: mt-10 lg:gap-x-8 lg:max-w-none" >
70
+ <div class =" mt-8 grid gap-6 max-w-xl mx-auto lg:grid-rows-2 lg:grid-flow-col lg:grid-cols-2 lg:mt-10 lg:gap-x-8 lg:max-w-none" >
71
71
@foreach ($latestArticles as $article )
72
72
@if ($loop -> first )
73
73
<div class =" lg:row-span-2" >
You can’t perform that action at this time.
0 commit comments