diff options
author | Colin Okay <colin@cicadas.surf> | 2022-10-29 13:04:47 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-10-29 13:04:47 -0500 |
commit | 8b526da8cd8c92ca0d68e62915bd8cf14df4f4cd (patch) | |
tree | bb5e4d007b93e55d68c469cae74e02fc6aeb91aa /home.lisp | |
parent | 46371385ee5d95217b7b1fb636e17d9277835f69 (diff) |
Add: Basic style
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 ())))))) |