diff --git a/app-proto/main.css b/app-proto/main.css index d7a71aa..b9fc0a1 100644 --- a/app-proto/main.css +++ b/app-proto/main.css @@ -47,6 +47,10 @@ body { } /* KLUDGE */ +/* + for convenience, we're using emoji as temporary icons for some buttons. these + buttons need to be displayed in an emoji font +*/ #add-remove > button.emoji { font-family: 'Noto Emoji', sans-serif; } diff --git a/app-proto/src/add_remove.rs b/app-proto/src/add_remove.rs index bea20f9..5590b6c 100644 --- a/app-proto/src/add_remove.rs +++ b/app-proto/src/add_remove.rs @@ -173,7 +173,7 @@ pub fn AddRemove() -> View { } ) { "+" } button( - class="emoji", /* KLUDGE */ + class="emoji", /* KLUDGE */ // for convenience, we're using an emoji as a temporary icon for this button disabled={ let state = use_context::(); state.selection.with(|sel| sel.len() != 2)