aboutsummaryrefslogtreecommitdiffhomepage
path: root/home.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'home.lisp')
-rw-r--r--home.lisp10
1 files changed, 6 insertions, 4 deletions
diff --git a/home.lisp b/home.lisp
index e7475ec..0446b72 100644
--- a/home.lisp
+++ b/home.lisp
@@ -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 ()))))))