🐛 Replace hyphens with bullets in subscriptions benefits

This commit is contained in:
Marina López 2026-07-01 15:03:39 +02:00
parent 0182f239ae
commit 04f6549e82
2 changed files with 3 additions and 1 deletions

View File

@ -73,7 +73,7 @@
[:h5 {:class (stl/css :benefits-title)} benefits-title])
[:ul {:class (stl/css :benefits-list)}
(for [benefit benefits]
[:li {:key (dm/str benefit) :class (stl/css :benefit)} "- " benefit])]
[:li {:key (dm/str benefit) :class (stl/css :benefit)} benefit])]
(when has-cta-button
[:> button* {:variant "primary"

View File

@ -150,6 +150,8 @@
}
.benefits-list {
list-style-position: inside;
list-style-type: disc;
margin-block: 0;
}