Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ludoguenet committed Mar 3, 2024
1 parent 5bca49e commit 538e8a9
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
25 changes: 24 additions & 1 deletion resources/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
overflow-x-auto is recommended.
*/
pre {
@apply rounded overflow-x-auto;
@apply mb-4 rounded overflow-x-auto;
}

/*
Expand Down Expand Up @@ -37,3 +37,26 @@ pre code.torchlight .summary-caret {
}

[x-cloak] { display: none !important; }

/* width */
::-webkit-scrollbar {
height: 5px;
width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
background: #e2e8f0;
border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
4 changes: 2 additions & 2 deletions resources/views/homepage.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</svg>
</button>
@else
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-3 h-3 text-green-400">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-3 text-green-300">
<path d="m9.653 16.915-.005-.003-.019-.01a20.759 20.759 0 0 1-1.162-.682 22.045 22.045 0 0 1-2.582-1.9C4.045 12.733 2 10.352 2 7.5a4.5 4.5 0 0 1 8-2.828A4.5 4.5 0 0 1 18 7.5c0 2.852-2.044 5.233-3.885 6.82a22.049 22.049 0 0 1-3.744 2.582l-.019.01-.005.003h-.002a.739.739 0 0 1-.69.001l-.002-.001Z" />
</svg>
@endauth
Expand All @@ -40,7 +40,7 @@
</div>
</div>

<figcaption class="mt-7">
<figcaption class="mt-6">
<div class="mt-4 flex items-center justify-center space-x-3 text-base">
<div class="font-semibold text-gray-900">{{ $nudge->user->name }}</div>
<svg viewBox="0 0 2 2" width="3" height="3" aria-hidden="true" class="fill-gray-900">
Expand Down

0 comments on commit 538e8a9

Please sign in to comment.