feat(client): implement top launcher pane

This commit is contained in:
Elian Doran
2024-11-22 21:05:45 +02:00
parent 8300acd30b
commit efc84722a9
3 changed files with 103 additions and 99 deletions

View File

@@ -4,11 +4,11 @@ import appContext from "../../components/app_context.js";
import LauncherWidget from "./launcher.js";
export default class LauncherContainer extends FlexContainer {
constructor() {
super('column');
constructor(horizontal) {
super(horizontal ? "row" : "column");
this.id('launcher-container');
this.css('height', '100%');
this.css(horizontal ? "width" : 'height', '100%');
this.filling();
this.load();