mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-31 15:47:26 +00:00

These are showing off use-cases for Slint, but they're not examples showing individual Slint features. Also removed the old printerdemo while at it.
10 lines
No EOL
268 B
Text
10 lines
No EOL
268 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { Theme } from "../theme.slint";
|
|
|
|
export component MenuBackground inherits Rectangle {
|
|
border-radius: 4px;
|
|
background: Theme.palette.ebony-radial-gradient;
|
|
clip: true;
|
|
} |