generated from OBJNULL/Dockerized-Rust
Fixed theming coloring issues
This commit is contained in:
parent
6a6dd68a32
commit
7fdd511c97
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
import { VerticalBox, Button } from "std-widgets.slint";
|
import { VerticalBox, Button, Palette } from "std-widgets.slint";
|
||||||
|
|
||||||
export component Calculation inherits PopupWindow {
|
export component Calculation inherits PopupWindow {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
|
@ -10,7 +10,9 @@ export component Calculation inherits PopupWindow {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: lightgray;
|
background: Palette.background;
|
||||||
|
drop-shadow-color: Palette.border;
|
||||||
|
drop-shadow-blur: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
VerticalBox {
|
VerticalBox {
|
||||||
|
|
Loading…
Reference in a new issue