// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT import { UsecasesPalette } from "styling.slint"; export global DialogGlobal { in-out property window-width; in-out property window-height; } export component ModalDialog inherits PopupWindow { width: DialogGlobal.window-width; height: DialogGlobal.window-height; Rectangle { width: 100%; height: 100%; background: UsecasesPalette.modal-background; @children } }