diff --git a/frontend/src/app/bans/bans.component.html b/frontend/src/app/bans/bans.component.html
index 3d26508..1670f05 100644
--- a/frontend/src/app/bans/bans.component.html
+++ b/frontend/src/app/bans/bans.component.html
@@ -23,6 +23,7 @@
[(ngModel)]="searchTerm"
(input)="filterNames()"
>
+
0 && searchTerm">
0">
-
-
-
- | Player |
- Banned By |
- Reason |
- Date |
- Expires |
-
-
-
-
- | {{ entry.username }} |
- {{ entry.punishedBy }} |
- {{ entry.reason }} |
- {{ getPunishmentTime(entry) }} |
- {{ getExpiredTime(entry) }} |
-
-
+
+
+
+
+ | Player |
+ Banned By |
+ Reason |
+ Date |
+ Expires |
+
+
+
+
+
+
+ | {{ entry.username }} |
+ {{ entry.punishedBy }} |
+ {{ entry.reason }} |
+ {{ getPunishmentTime(entry) }} |
+ {{ getExpiredTime(entry) }} |
+
+
+
diff --git a/frontend/src/app/bans/history/history.component.scss b/frontend/src/app/bans/history/history.component.scss
index e69de29..4c310f9 100644
--- a/frontend/src/app/bans/history/history.component.scss
+++ b/frontend/src/app/bans/history/history.component.scss
@@ -0,0 +1,34 @@
+table {
+ width: 100%;
+ table-layout: fixed;
+}
+
+thead {
+ height: 25px;
+ font-size: 1.1em;
+}
+
+tbody {
+ font-size: 0.9em;
+}
+
+td {
+ padding: 5px 0 5px 0;
+}
+
+th, td {
+ text-overflow: ellipsis;
+}
+
+.historyPlayer {
+ width: 200px;
+ text-overflow: clip;
+}
+
+.historyReason {
+ width: 940px;
+}
+
+.historyDate {
+ width: 160px;
+}