From 72d8db8c87cf95efb73e4caeb5e637e3ed142783 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sat, 7 Jul 2018 21:25:30 +0200 Subject: [PATCH] login/list: wrap each item to allow containment Hack to set CSS overflow fixing right-aligned date from bleading over. --- login/list.php | 1 + 1 file changed, 1 insertion(+) diff --git a/login/list.php b/login/list.php index 2cf27d1..0d9eec2 100644 --- a/login/list.php +++ b/login/list.php @@ -59,6 +59,7 @@ foreach ($users as $user) { if ($user->admin) { $name .= ' 🔧'; } + $name = "
$name
"; } print "
  • $name
  • \n"; -- 2.30.0