aboutsummaryrefslogtreecommitdiffhomepage
path: root/explore.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'explore.lisp')
-rw-r--r--explore.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/explore.lisp b/explore.lisp
index 5e6ada0..64d244a 100644
--- a/explore.lisp
+++ b/explore.lisp
@@ -20,7 +20,7 @@
(setf (url-src thumb) (or (track-thumb-url track) "")))))
(defun create-recent-playlists-area (parent)
- (let* ((container (create-div parent)))
+ (let* ((container (create-div parent :class "row")))
(dolist (pl (recent-playlists 10))
(create-playlist-explore-card container pl))))
@@ -30,5 +30,5 @@
(div ()
(navigation-header ())
;(media-search-area ())
- (section (:h2 :content "Recent Playlists"))
+ (section (:h2 :content "Recent Playlists" :class "center"))
(recent-playlists-area ()))))