16 lines
456 B
Plaintext
16 lines
456 B
Plaintext
import { Metrics, DarkPalette } from "theme.slint";
|
|
import { HorizontalBox } from "widgets/layout.slint";
|
|
|
|
export component EditorBar inherits HorizontalBox {
|
|
height: Metrics.size-xl;
|
|
j-spacing: Metrics.spacing-xl;
|
|
j-alignment: start;
|
|
|
|
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!!";
|
|
}
|
|
}
|