diff options
-rw-r--r-- | client/src/app/admin/friends/friend-list/friend-list.component.html | 2 | ||||
-rw-r--r-- | client/src/app/admin/users/user-list/user-list.component.html | 2 | ||||
-rw-r--r-- | client/src/sass/application.scss | 4 |
3 files changed, 6 insertions, 2 deletions
diff --git a/client/src/app/admin/friends/friend-list/friend-list.component.html b/client/src/app/admin/friends/friend-list/friend-list.component.html index 7f1709d94..f138d65dd 100644 --- a/client/src/app/admin/friends/friend-list/friend-list.component.html +++ b/client/src/app/admin/friends/friend-list/friend-list.component.html | |||
@@ -3,7 +3,7 @@ | |||
3 | <table class="table table-hover"> | 3 | <table class="table table-hover"> |
4 | <thead> | 4 | <thead> |
5 | <tr> | 5 | <tr> |
6 | <th>ID</th> | 6 | <th class="table-column-id">ID</th> |
7 | <th>Url</th> | 7 | <th>Url</th> |
8 | <th>Score</th> | 8 | <th>Score</th> |
9 | <th>Created Date</th> | 9 | <th>Created Date</th> |
diff --git a/client/src/app/admin/users/user-list/user-list.component.html b/client/src/app/admin/users/user-list/user-list.component.html index fa7f71864..2ef9ea0e0 100644 --- a/client/src/app/admin/users/user-list/user-list.component.html +++ b/client/src/app/admin/users/user-list/user-list.component.html | |||
@@ -3,7 +3,7 @@ | |||
3 | <table class="table table-hover"> | 3 | <table class="table table-hover"> |
4 | <thead> | 4 | <thead> |
5 | <tr> | 5 | <tr> |
6 | <th>Id</th> | 6 | <th class="table-column-id">ID</th> |
7 | <th>Username</th> | 7 | <th>Username</th> |
8 | <th class="text-right">Remove</th> | 8 | <th class="text-right">Remove</th> |
9 | </tr> | 9 | </tr> |
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index e03b882d6..b3bdffe50 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -40,6 +40,10 @@ menu { | |||
40 | } | 40 | } |
41 | } | 41 | } |
42 | 42 | ||
43 | .table-column-id { | ||
44 | width: 200px; | ||
45 | } | ||
46 | |||
43 | 47 | ||
44 | footer { | 48 | footer { |
45 | border-top: 1px solid rgba(0, 0, 0, 0.2); | 49 | border-top: 1px solid rgba(0, 0, 0, 0.2); |