Skip to content

Commit

Permalink
fix padding
Browse files Browse the repository at this point in the history
  • Loading branch information
max15015 committed Oct 28, 2024
1 parent b857b8e commit 37c490d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/friendships/create.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<x-app-layout>
<x-navbar-friends />
<div class="pt-16 w-full max-w-md mx-auto">
<div class="pt-10 w-full max-w-md mx-auto">
<form action="{{ route('friends.store') }}" method="POST" class="space-y-6 dark:bg-gray-800 p-6 rounded-lg shadow-md">
@csrf

Expand Down
2 changes: 1 addition & 1 deletion resources/views/friendships/pending.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<x-navbar-friends />

<!-- Décalage du contenu pour éviter la superposition avec la barre rouge -->
<div class="pt-16 w-full">
<div class="pt-10 w-full">
@if(session('error'))
<div class="bg-red-500 text-white p-4 rounded mb-4 mx-4">
{{ session('error') }}
Expand Down

0 comments on commit 37c490d

Please sign in to comment.