fmeditor-slint/ui/editor_bar.slint

16 lines
460 B
Plaintext
Raw Permalink Normal View History

2024-04-10 12:28:43 +00:00
import { Metrics, DarkPalette } from "theme.slint";
import { HorizontalBox } from "widgets/components.slint";
2024-04-09 19:47:10 +00:00
2024-04-10 12:28:43 +00:00
export component EditorBar inherits HorizontalBox {
height: Metrics.size-xl;
p-spacing: Metrics.spacing-xl;
p-alignment: start;
2024-04-09 19:47:10 +00:00
2024-04-10 12:28:43 +00:00
Text {
color: DarkPalette.text[4];
font-size: Metrics.font-md;
vertical-alignment: center;
text: "Damn look at all the options and shit here it's like Hammer 2!!";
2024-04-09 19:47:10 +00:00
}
}