diff options
author | Colin Okay <colin@cicadas.surf> | 2022-10-29 13:21:28 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-10-29 13:21:28 -0500 |
commit | e7dfe39add9ba4987a08d10aa29da44cdeaea8b7 (patch) | |
tree | 190cf924a883aac147a7f1e1d4a58a61d14c8a86 /explore.lisp | |
parent | 8b526da8cd8c92ca0d68e62915bd8cf14df4f4cd (diff) |
Tweak: styles
Diffstat (limited to 'explore.lisp')
-rw-r--r-- | explore.lisp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/explore.lisp b/explore.lisp index 64d244a..ca9cb8e 100644 --- a/explore.lisp +++ b/explore.lisp @@ -9,11 +9,11 @@ (defun create-playlist-explore-card (parent pl) (with-clog-create parent (div (:bind card) - (img (:bind thumb)) - (div () - (a (:link (url-to-playlist pl) :content (playlist-title pl))) - (span (:content " -- ")) - (span (:content (secs-to-hms (playlist-duration pl)))))) + (a (:link (url-to-playlist pl) ) + (img (:bind thumb)) + (span (:content (playlist-title pl))) + (span (:content " -- ")) + (span (:content (secs-to-hms (playlist-duration pl)))))) (setf (maximum-width thumb) "180px" (width card) "200px") (when-let (track (first (playlist-tracks pl))) |