Skip to content

Commit 7e5ffa3

Browse files
committed
Update padding on article layout
1 parent e9dc3cf commit 7e5ffa3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

resources/views/articles/show.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
$user = $article->user;
77
@endphp
88

9-
<x-container>
9+
<x-container class="py-12">
1010
<article class="relative lg:grid lg:grid-cols-9 lg:gap-10" xmlns:livewire="http://www.w3.org/1999/html">
1111
<div class="hidden relative lg:block lg:col-span-2">
1212
<x-sticky-content class="divide-y divide-skin-base space-y-6">

resources/views/livewire/articles/_form.blade.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,14 +253,15 @@ class="flex items-center justify-center text-sm leading-none text-center rounded
253253
wire:model="title"
254254
name="title"
255255
id="title"
256-
class="block w-full h-auto px-0 py-4 text-3xl sm:text-4xl font-bold placeholder-skin-input focus:placeholder-skin-input-focus font-normal text-skin-inverted bg-transparent border-0 leading-normal border-0 appearance-none focus:ring-0 shadow-none"
256+
class="block w-full h-auto px-0 py-4 text-3xl sm:text-4xl font-bold placeholder-skin-input focus:placeholder-skin-input-focus text-skin-inverted bg-transparent border-0 leading-normal appearance-none focus:ring-0 shadow-none"
257257
placeholder="Titre de votre article..."
258+
aria-label="Titre"
258259
autofocus
259260
autocomplete="off"
260261
/>
261262
<livewire:markdown-x :content="$body" />
262263
<div class="mt-6 text-right text-skin-base">
263-
{{ __('Temps de lecture estimé :') }} <span class="text-skin-inverted">{{ $reading_time }} min</span>
264+
Temps de lecture estimé : <span class="text-skin-inverted">{{ $reading_time }} min</span>
264265
</div>
265266
</div>
266267
</main>

0 commit comments

Comments
 (0)