diff --git a/README.md b/README.md index 26ef0b0..29b57fc 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,8 @@ and I wanted to see what numbers would look like in base-`e`. Also, I wanted to ## Running Locally This site uses Rust `nightly` and requires that you've installed the `wasm` compilation target for -your toolchain. +your toolchain. See [getting started with +Leptos](https://book.leptos.dev/getting_started/index.html). If you don't have Rust nightly, you can install it with diff --git a/index.html b/index.html index 9c45715..8e7ef39 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@
- + diff --git a/public/styles.css b/public/styles.css index 4c24f1a..90f2ee7 100644 --- a/public/styles.css +++ b/public/styles.css @@ -149,5 +149,4 @@ button { margin-left: auto; margin-right: auto; text-align: center; - margin: 2rem; } diff --git a/src/components/output_details/content.rs b/src/components/output_details/content.rs index 1970bae..1086b6c 100644 --- a/src/components/output_details/content.rs +++ b/src/components/output_details/content.rs @@ -79,6 +79,7 @@ where div() .child( button() + .classes("mx-auto") .on(ev::click, move |_| close()) .child("Hide Output Details"), ) @@ -98,7 +99,7 @@ where .child( tr().child( td().classes("align-end") - .child("The number in base-") + .child("Write the number in base-") .child(move || rounded_bignum(base(), None)), ) .child( @@ -110,7 +111,7 @@ where .child( tr().child( td().classes("align-end") - .child("The first digit(s) of the number"), + .child("Separate the leading digit(s) of the number"), ) .child(move || { let mut gena = td_classes_generator();