oxdc

Results 2 issues of oxdc

### Describe the bug The pane won't show anything except the input box, see the screenshot below, ![image](https://user-images.githubusercontent.com/29519076/153196192-99ca3eb3-fa59-433f-ae82-e436e3b7106e.png) If one emulates the mobile mode on a PC, contents and buttons...

https://github.com/JuliaIO/Formatting.jl/blob/e4c9f60020e965a72abae049ddac7e02bf986067/src/fmtcore.jl#L176 ```julia julia> using Formatting julia> fmt(FormatSpec("15.6f"), 1e5) # OK " 100000.000000" julia> fmt(FormatSpec("15.6f"), 1e10) # OK, even the width is too small "10000000000.000000" julia> fmt(FormatSpec("15.6f"), 1e20) # Error, the...