Skip to content

Commit e1e0bc9

Browse files
committed
some GUI changes
1 parent 633e611 commit e1e0bc9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

resources/views/index.blade.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ class="inline-flex text-xs"
187187
<hr class="border-b border-gray-300">
188188
<br>
189189
@foreach ($docs as $index => $doc)
190-
<section class="pt-5 pl-2 pr-2 pb-5 border mb-10 rounded bg-white shadow" v-if="!docs[{{$index}}]['isHidden']">
191-
<div class="font-sans" id="{{$doc['httpMethod'] .'-'. $doc['uri']}}">
190+
<section class="pt-5 pl-2 pr-2 pb-5 border-2 mb-10 rounded bg-white shadow" v-if="!docs[{{$index}}]['isHidden']">
191+
<div class="border-2 rounded" id="{{$doc['httpMethod'] .'-'. $doc['uri']}}">
192192
<h1 class="text-sm break-normal text-black bg-indigo-50 break-normal font-sans pb-1 pt-1 text-black">
193193
<span class="w-20
194194
font-medium
@@ -197,6 +197,8 @@ class="inline-flex text-xs"
197197
justify-center
198198
px-2
199199
py-1
200+
ml-2
201+
mr-2
200202
text-xs
201203
font-bold
202204
leading-none
@@ -207,15 +209,13 @@ class="inline-flex text-xs"
207209
text-{{in_array('PATCH', $doc['methods']) ? 'black': ''}}-100 bg-{{in_array('PATCH', $doc['methods']) ? 'yellow': ''}}-500
208210
text-{{in_array('DELETE', $doc['methods']) ? 'white': ''}} bg-{{in_array('DELETE', $doc['methods']) ? 'black': ''}}
209211
">
210-
{{$doc['methods'][0]}}
212+
{{$doc['methods'][0]}}
211213
</span>
212214
<span class="">
213215
<a href="#{{$doc['uri']}}">{{$doc['uri']}}</a>
214216
</span>
215217
</h1>
216218
</div>
217-
<hr class="border-b border-grey-light">
218-
219219
<table class="table-fixed text-sm mt-5">
220220
<tbody>
221221
<tr>
@@ -250,7 +250,7 @@ class="inline-flex text-xs"
250250
<vue-markdown class="mt-2">{!! $doc['docBlock'] !!}</vue-markdown>
251251
</div>
252252
@if (!empty($doc['rules']))
253-
<div class="border-2 mr-4 mt-4 p-4 rounded text-sm">
253+
<div class="border-2 mr-4 mt-4 p-4 rounded">
254254
<h3 class="font-bold">Attributes</h3>
255255
<hr>
256256
<table class="table-fixed align-left text-sm mt-3">

0 commit comments

Comments
 (0)