fmeditor-slint/ui/widgets/separator.slint

22 lines
444 B
Plaintext
Raw Normal View History

2024-04-10 12:28:43 +00:00
import {DarkPalette} from "../theme.slint";
2024-04-09 19:52:34 +00:00
export component VerticalSeparator {
2024-04-10 12:28:43 +00:00
width: 1px;
2024-04-09 19:52:34 +00:00
Path {
width: 1px;
2024-04-10 12:28:43 +00:00
stroke: DarkPalette.background[0];
2024-04-09 19:52:34 +00:00
stroke-width: 1px;
commands: "M 0 0 L 0 1 Z";
}
}
export component HorizontalSeparator {
2024-04-10 12:28:43 +00:00
height: 1px;
2024-04-09 19:52:34 +00:00
Path {
height: 1px;
2024-04-10 12:28:43 +00:00
stroke: DarkPalette.background[0];
2024-04-09 19:52:34 +00:00
stroke-width: 1px;
commands: "M 0 0 L 1 0 Z";
}
}