You'll probably want to hide either the undo/redo buttons or the entire sidebar.
To hide only the undo/redo buttons, you may use the following:
tw-sidebar .undo, tw-sidebar .redo {
display: none;
}
To hide the entire sidebar, you may use the following:
tw-sidebar {
display: none;
}