[docs] use proper symbol for Celsius and Fahrenheit (#7061)

pull/7738/head
Enrico Spinielli 5 years ago committed by GitHub
parent de7aa824bf
commit eb7af3076f

@ -14,11 +14,11 @@
</script> </script>
<!-- https://eugenkiss.github.io/7guis/tasks/#temp --> <!-- https://eugenkiss.github.io/7guis/tasks/#temp -->
<input value={c} on:input="{e => setBothFromC(e.target.value)}" type=number> °c = <input value={c} on:input="{e => setBothFromC(e.target.value)}" type=number> °C =
<input value={f} on:input="{e => setBothFromF(e.target.value)}" type=number> °f <input value={f} on:input="{e => setBothFromF(e.target.value)}" type=number> °F
<style> <style>
input { input {
width: 5em; width: 5em;
} }
</style> </style>

Loading…
Cancel
Save