web: add icons to catchup controls

This commit is contained in:
Bill Thiede 2025-02-24 17:09:16 -08:00
parent 9bf53afebf
commit 45e4edb1dd

View File

@ -217,12 +217,14 @@ fn catchup_view(
], ],
button![ button![
C![&tw_classes::BUTTON], C![&tw_classes::BUTTON],
"Keep unread", span![i![C!["far", "fa-envelope"]]],
span![C!["pl-2"], "Keep unread"],
ev(Ev::Click, move |_| Msg::CatchupKeepUnread) ev(Ev::Click, move |_| Msg::CatchupKeepUnread)
], ],
button![ button![
C![&tw_classes::BUTTON, "bg-green-500"], C![&tw_classes::BUTTON, "bg-green-500"],
"Mark as read", span![i![C!["far", "fa-envelope-open"]]],
span![C!["pl-2"], "Mark as read"],
ev(Ev::Click, move |_| Msg::CatchupMarkAsRead) ev(Ev::Click, move |_| Msg::CatchupMarkAsRead)
] ]
], ],