Footer style margin right not working.
textual version: 8.2.8
The bug
from textual.app import App, ComposeResult
from textual.widgets import Footer
class FooterTest(App):
def compose(self) -> ComposeResult:
self.footer = Footer()
yield self.footer
def on_mount(self) -> None:
self.footer.styles.margin = 5
if __name__ == "__main__":
app = FooterTest()
app.run()

Footer style margin right not working.
textual version:
8.2.8The bug