mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 10:55:55 +01:00
11 lines
228 B
JavaScript
11 lines
228 B
JavaScript
import FlexContainer from "./flex_container.js";
|
|
|
|
export default class RootContainer extends FlexContainer {
|
|
constructor() {
|
|
super('row');
|
|
|
|
this.id('root-widget');
|
|
this.css('height', '100%');
|
|
}
|
|
}
|