mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-27 05:44:08 +00:00
8 lines
285 B
Text
8 lines
285 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { AppPalette } from "style/styles.slint";
|
|
|
|
export component PageBase inherits Rectangle {
|
|
background: @linear-gradient(180deg, AppPalette.background 0%, AppPalette.alternate-background 100%);
|
|
}
|