diff options
Diffstat (limited to 'home.lisp')
-rw-r--r-- | home.lisp | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -82,9 +82,11 @@ (with-clog-create body (div () (navigation-header ()) - (p (:content (format nil "Welcome ~a" (user-name (session-user body))))) - (new-playlist-form ()) - (playlist-listing ()) - (invite-control ())))) + (div (:class "row") + (div () + (p (:content (format nil "Welcome ~a" (user-name (session-user body))))) + (new-playlist-form ()) + (playlist-listing ()) + (invite-control ())))))) |