Skip to content

Commit

Permalink
chore(deps): bump
Browse files Browse the repository at this point in the history
  • Loading branch information
liyasthomas committed Jul 25, 2021
1 parent dd004c9 commit 449c878
Show file tree
Hide file tree
Showing 5 changed files with 742 additions and 502 deletions.
24 changes: 19 additions & 5 deletions components/history/graphql/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
readonly
:value="entry.url"
:placeholder="$t('empty_req_name')"
class="input cursor-pointer text-sm bg-transparent"
class="cursor-pointer text-sm input !bg-transparent"
@click="$emit('use-entry')"
/>
</li>
Expand Down Expand Up @@ -83,7 +83,7 @@
type="text"
readonly
:value="`${line}`"
class="input pt-0 mt-0 text-sm bg-transparent text-secondaryLight"
class="text-sm input !bg-transparent !mt-0 !text-secondaryLight !pt-0"
/>
</li>
</div>
Expand All @@ -96,7 +96,14 @@
type="text"
readonly
:value="entry.time"
class="input pt-0 mt-0 text-sm bg-transparent text-secondaryLight"
class="
text-sm
input
!bg-transparent
!mt-0
!text-secondaryLight
!pt-0
"
/>
</li>
<li>
Expand All @@ -106,7 +113,14 @@
readonly
:value="`Duration: ${entry.duration}ms`"
:placeholder="$t('no_duration')"
class="input pt-0 mt-0 text-sm bg-transparent text-secondaryLight"
class="
text-sm
input
!bg-transparent
!mt-0
!text-secondaryLight
!pt-0
"
/>
</li>
<!-- <li>
Expand All @@ -116,7 +130,7 @@
readonly
:value="entry.preRequestScript"
:placeholder="$t('no_prerequest_script')"
class="pt-0 mt-0 text-sm bg-transparent text-secondaryLight"
class="bg-transparent mt-0 text-sm text-secondaryLight pt-0"
/>
</li> -->
</div>
Expand Down
26 changes: 20 additions & 6 deletions components/history/rest/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<div class="show-on-large-screen">
<span
class="p-2 m-2 truncate inline-flex cursor-pointer items-center text-sm"
class="cursor-pointer m-2 text-sm p-2 truncate inline-flex items-center"
:class="entryStatus.className"
:style="{ '--status-code': entry.status }"
@click="$emit('use-entry')"
Expand All @@ -16,7 +16,7 @@
readonly
:value="entry.name"
:placeholder="$t('empty_req_name')"
class="input cursor-pointer text-sm bg-transparent"
class="cursor-pointer text-sm input !bg-transparent"
@click="$emit('use-entry')"
/>
</li>
Expand Down Expand Up @@ -89,7 +89,7 @@
readonly
:value="`${entry.url}${entry.path}`"
:placeholder="$t('no_url')"
class="input pt-0 mt-0 text-sm bg-transparent text-secondaryLight"
class="text-sm input !bg-transparent !mt-0 !text-secondaryLight !pt-0"
/>
</li>
</div>
Expand All @@ -102,7 +102,14 @@
type="text"
readonly
:value="entry.time"
class="input pt-0 mt-0 text-sm bg-transparent text-secondaryLight"
class="
text-sm
input
!bg-transparent
!mt-0
!text-secondaryLight
!pt-0
"
/>
</li>
<li>
Expand All @@ -111,7 +118,14 @@
type="text"
readonly
:value="duration"
class="input pt-0 mt-0 text-sm bg-transparent text-secondaryLight"
class="
text-sm
input
!bg-transparent
!mt-0
!text-secondaryLight
!pt-0
"
/>
</li>
<!-- <li>
Expand All @@ -121,7 +135,7 @@
readonly
:value="entry.preRequestScript"
:placeholder="$t('no_prerequest_script')"
class="pt-0 mt-0 text-sm bg-transparent text-secondaryLight"
class="bg-transparent mt-0 text-sm text-secondaryLight pt-0"
/>
</li> -->
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/lenses/HeadersRenderer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<input
:value="`${key} → ${value}`"
:name="key"
class="input bg-transparent"
class="input !bg-transparent"
readonly
/>
</p>
Expand Down
Loading

0 comments on commit 449c878

Please sign in to comment.