For example, you get no spacing between these elements. The underlying cause is that page_fillable() currently doesn't bring in the underlying fill.css
from shiny import App, ui
app_ui = ui.page_fillable(
ui.input_slider("slider", label="Slider", min=0, max=100, value=50),
ui.p("Paragraph 1", class_="bg-dark"),
ui.p("Paragraph 2", class_="bg-dark")
)
app = App(app_ui, None)
