💻 My personal website blog.kacaii.dev/
blog gleam lustre

:iphone: hide navbar icons on smaller screens

+2 -2
+2 -2
src/blog/page/navbar.gleam
··· 10 10 route( 11 11 icon: "nf-md-file_document_edit", 12 12 href: "articles.html", 13 - label: "Articles", 13 + label: "Blog", 14 14 ), 15 15 route(icon: "nf-md-file_star", href: "uses.html", label: "Uses"), 16 16 ]) ··· 21 21 let anchor_style = class("flex gap-2 items-center") 22 22 23 23 html.a([anchor_style, attr.href(to)], [ 24 - nerd_font_icon.view([], nf), 24 + nerd_font_icon.view([class("hidden sm:inline-block")], nf), 25 25 html.p([text_style], [html.text(text)]), 26 26 ]) 27 27 }