refactor(layout/right_pane): CSS for container

This commit is contained in:
Elian Doran 2025-12-17 23:03:57 +02:00
parent 616af1502f
commit f46de50f17
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,3 @@
body.experimental-feature-new-layout #right-pane {
width: 300px;
}

View File

@ -1,8 +1,9 @@
//! This is currently only used for the new layout. //! This is currently only used for the new layout.
import "./RightPanelContainer.css";
export default function RightPanelContainer() { export default function RightPanelContainer() {
return ( return (
<div id="right-pane" style={{ width: 300 }}> <div id="right-pane">
Hi there. Hi there.
</div> </div>
); );