Skip to content

Commit

Permalink
Update about page
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed May 11, 2024
1 parent 1caa09c commit 17a4b9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions resources/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
}

.config-value-bool {
padding: .2em .4em;
@apply bg-gray-100 rounded-sm
padding: .1em .2em;
@apply bg-gray-100 rounded
}
}
8 changes: 4 additions & 4 deletions resources/views/backend/about.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@
$domainBlacklist = collect(config('urlhub.domain_blacklist'))
->sort()->toArray();
@endphp
<dt><code>domain_blacklist</code></dt>
<dd>
<dt class="mt-2"><code>domain_blacklist</code></dt>
<dd class="mt-2">
<div class="bg-gray-50 p-2 border border-gray-300 rounded text-sm">
@if (! empty($domainBlacklist))
<code>{{implode(", ", $domainBlacklist)}}</code>
Expand All @@ -122,8 +122,8 @@
$reservedKey = collect(config('urlhub.reserved_keyword'))
->sort()->toArray();
@endphp
<dt>Reserved Keywords</dt>
<dd>
<dt class="mt-2 mb-2">Reserved Keywords</dt>
<dd class="mt-2 mb-2">
<div class="bg-gray-50 p-2 border border-gray-300 rounded text-sm">
<p><b>Config</b></p>
<code>{{implode(", ", $reservedKey)}}</code>
Expand Down

0 comments on commit 17a4b9e

Please sign in to comment.