blob: 2b99de36efc7dfffb43135aac8ab69a49b3f387b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import "root:/widgets"
import "root:/services"
import "root:/utils"
import "root:/config"
import QtQuick
import QtQuick.Layouts
Box {
padding: [Appearance.padding.smaller, 0]
Label {
text: Icons.osIcon
font.pointSize: Appearance.font.size.smaller
font.family: Appearance.font.family.mono
color: Appearance.colours.yellow
Layout.alignment: Layout.Center
}
}
|