diff options
author | Jean-Nicolas Veigel <art.jnveigel@gmail.com> | 2024-03-16 04:27:31 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-03-26 10:31:25 +0000 |
commit | eb47a893c941000803984d9100e3856040404f3b (patch) | |
tree | c9e502d1e66b13b5b5e69820979a9034926eed60 /src | |
parent | 84032f485d04f4dc2758b111622dd19f2bef30ef (diff) | |
download | tour-eb47a893c941000803984d9100e3856040404f3b.tar.gz tour-eb47a893c941000803984d9100e3856040404f3b.zip |
chore: format css
Diffstat (limited to 'src')
-rw-r--r-- | src/tour/components.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tour/components.gleam b/src/tour/components.gleam index 98d7590..a1e78c9 100644 --- a/src/tour/components.gleam +++ b/src/tour/components.gleam @@ -19,7 +19,7 @@ pub fn text_link( /// Renders the tour's navbar as html pub fn navbar(titled title: String, links links: List(Link)) -> Html { - let links = list.map(links, fn(l) { text_link(l, [#("class", "link")]) }) + let links = list.map(links, fn(l) { text_link(l, []) }) let nav_right_items = list.flatten([links, [widgets.theme_picker()]]) |