Skip to content

Commit f09aee5

Browse files
authored
Apply table responsive on table class (#1318)
1 parent 248b95a commit f09aee5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

resources/js/components/AuthorizedClients.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<div class="card-body">
1414
<!-- Authorized Tokens -->
15-
<table class="table table-borderless mb-0">
15+
<table class="table table-responsive table-borderless mb-0">
1616
<thead>
1717
<tr>
1818
<th>Name</th>

resources/js/components/Clients.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
You have not created any OAuth clients.
2626
</p>
2727

28-
<table class="table table-borderless mb-0" v-if="clients.length > 0">
28+
<table class="table table-responsive table-borderless mb-0" v-if="clients.length > 0">
2929
<thead>
3030
<tr>
3131
<th>Client ID</th>

resources/js/components/PersonalAccessTokens.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</p>
2828

2929
<!-- Personal Access Tokens -->
30-
<table class="table table-borderless mb-0" v-if="tokens.length > 0">
30+
<table class="table table-responsive table-borderless mb-0" v-if="tokens.length > 0">
3131
<thead>
3232
<tr>
3333
<th>Name</th>

0 commit comments

Comments
 (0)