Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/components/AuthorizedClients.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<div class="card-body">
<!-- Authorized Tokens -->
<table class="table table-borderless mb-0">
<table class="table table-responsive table-borderless mb-0">
<thead>
<tr>
<th>Name</th>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/Clients.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
You have not created any OAuth clients.
</p>

<table class="table table-borderless mb-0" v-if="clients.length > 0">
<table class="table table-responsive table-borderless mb-0" v-if="clients.length > 0">
<thead>
<tr>
<th>Client ID</th>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/PersonalAccessTokens.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</p>

<!-- Personal Access Tokens -->
<table class="table table-borderless mb-0" v-if="tokens.length > 0">
<table class="table table-responsive table-borderless mb-0" v-if="tokens.length > 0">
<thead>
<tr>
<th>Name</th>
Expand Down