1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
---|---|
2 | // SPDX-License-Identifier: MIT |
3 | |
4 | import { Theme } from "../theme.slint"; |
5 | |
6 | export component MobileHeader { |
7 | min-height: 30px; |
8 | vertical-stretch: 0; |
9 | |
10 | Rectangle { |
11 | background: Theme.palette.pure-black; |
12 | |
13 | HorizontalLayout { |
14 | padding-left: 8px; |
15 | padding-right: 8px; |
16 | |
17 | @children |
18 | } |
19 | } |
20 | } |
21 |