From 29a54f1f753ebe55fdffaec3965b0acf4c04ae3b Mon Sep 17 00:00:00 2001 From: Beat Hagenlocher Date: Sun, 30 Jun 2024 22:47:37 +0200 Subject: Add badges, adjust style --- pollen.rkt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pollen.rkt') diff --git a/pollen.rkt b/pollen.rkt index 5fb2194..e054ac4 100644 --- a/pollen.rkt +++ b/pollen.rkt @@ -12,14 +12,14 @@ (provide (all-defined-out)) (define (badge topic) - `(li ([class "mr-1.5 mb-2"]) - (div ([class ,"flex items-center rounded-full bg-[@{celadon}]/10 px-3 py-1 text-xs font-medium leading-5 text-[@{celadon}]"]) ,topic))) + `(div ([class "mr-1.5 mb-2"]) + (div ([class ,"flex items-center rounded-full bg-[@{celadon}]/10 px-4 py-2 text-sm font-medium leading-5 text-[@{celadon}]"]) ,topic))) ; (->badges "Haskell, Nix, Racket") (define (->badges topics) (let ([top-list (map (curry string-trim #:left? #t) (string-split topics ","))]) - `(ul ([class "flex flex-wrap justify-center"] [aria-label "Tools/Techniques used"]) + `(div ([class "flex flex-wrap justify-center"] [aria-label "Tools/Techniques used"]) ,(for/splice ([topic top-list]) (badge topic))))) (define (link text url) -- cgit v1.2.3