Closed nik-humphries closed 1 year ago
The "Details" and "Stop" button in the My apps modal have a new line before and after them when compiled which isn't trimmed and makes the buttons 3 times the height they should be (when using bootstrap 5).
https://github.com/openanalytics/shinyproxy/blob/5ac010ea5aa96407da8d50fc6458daae130c758c/src/main/resources/static/handlebars/my_apps.handlebars#L10
I don't know if this is something you would change (I haven't tested without using bootstrap 5), but just something to note.
I also had to change the .btn-group to flex to get the buttons side by side.
Adding white-space:normal to the btn style trims the whitespace.
white-space:normal
The "Details" and "Stop" button in the My apps modal have a new line before and after them when compiled which isn't trimmed and makes the buttons 3 times the height they should be (when using bootstrap 5).
https://github.com/openanalytics/shinyproxy/blob/5ac010ea5aa96407da8d50fc6458daae130c758c/src/main/resources/static/handlebars/my_apps.handlebars#L10
I don't know if this is something you would change (I haven't tested without using bootstrap 5), but just something to note.
I also had to change the .btn-group to flex to get the buttons side by side.
Adding
white-space:normal
to the btn style trims the whitespace.