You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
345 B
CSS

:import("../pane/style.css") { pane: pane; }
.paneSet {
display: grid;
width: 100%;
height: 100%;
}
.direction-horizontal {
.pane {
height: 100%;
/* FIXME: This should really be & > ..., but that isn't allowed by the parser */
:global .react-resizable {
height: 100%;
}
}
}
.direction-vertical {
.pane {
width: 100%;
}
}